
:root {
  --primary: #1E2B38;
  --secondary: #7E57C2;
  --accent: #FF6D00;
  --bg-dark: #121920;
  --bg-light: #283545;
  --text-light: #F5F7FA;
  --text-muted: #A0AEC0;
  --success: #4CAF50;
  --error: #F44336;
  --warning: #FFC107;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-light);
  margin-top: 0;
}

.menu-icon::after {
  display: none;
}

.top-bar, .top-bar ul, tbody, tfoot, thead, table.unstriped tbody tr, table.unstriped tbody, input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
  background-color: inherit;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

li, label {
  color: var(--text-light);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-light {
  background-color: var(--bg-light);
}

.text-accent {
  color: var(--accent);
}


.container {
  padding: 1rem;
}

.section {
  padding: 4rem 0;
}

.section-sm {
  padding: 2rem 0;
}


header {
  background-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.top-bar {
  padding: 0.5rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-light);
}

.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 1.5rem;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}


.hero {
  background-color: var(--bg-light);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(126, 87, 194, 0.3), rgba(255, 109, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-image {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #6A48B0;
  color: var(--text-light);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-light);
}

.btn-accent:hover {
  background-color: #E56200;
  color: var(--text-light);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-block {
  display: block;
  width: 100%;
}


.card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-text {
  margin-bottom: 1.5rem;
}

.card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}


.features {
  background-color: var(--bg-dark);
  padding: 4rem 0;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.products {
  background-color: var(--bg-dark);
  padding: 4rem 0;
}

.product-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-description {
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.product-features {
  margin-bottom: 1.5rem;
}

.product-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.product-features li::before {
  content: "✓";
  color: var(--success);
  margin-right: 0.5rem;
  font-weight: bold;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.quantity-btn {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  border-radius: 4px;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: 1px solid var(--bg-dark);
  background-color: var(--bg-light);
  color: var(--text-light);
  margin: 0 0.5rem;
  padding: 0.25rem;
  border-radius: 4px;
}


.why-choose-us {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.reason-item {
  margin-bottom: 3rem;
}

.reason-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.reason-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.user-guide {
  background-color: var(--bg-dark);
  padding: 4rem 0;
}

.guide-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.guide-body {
  padding: 1.5rem;
}

.guide-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.guide-text {
  margin-bottom: 1.5rem;
}


.contact {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-right: 0.75rem;
  min-width: 24px;
}

.contact-text {
  margin: 0;
}

.contact-form {
  background-color: var(--bg-dark);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--bg-light);
  border-radius: 4px;
  background-color: var(--primary);
  color: var(--text-light);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: var(--primary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}


footer {
  background-color: var(--primary);
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-about {
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--bg-light);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-text {
  color: var(--text-muted);
}


.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-light);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 1rem;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
}

.cart-quantity {
  width: 50px;
  text-align: center;
  margin: 0 0.5rem;
  padding: 0.25rem;
  background-color: var(--primary);
  color: var(--text-light);
  border: 1px solid var(--bg-light);
  border-radius: 4px;
}

.remove-item {
  color: var(--error);
  cursor: pointer;
  margin-left: 1rem;
}

.cart-summary {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--primary);
}

.cart-total-label {
  font-weight: 700;
}

.cart-total-value {
  font-weight: 700;
  color: var(--accent);
}


.checkout-section {
  background-color: var(--bg-dark);
  padding: 4rem 0;
}

.checkout-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.checkout-summary {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--primary);
  font-weight: 700;
}

.checkout-total-value {
  color: var(--accent);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-text {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings {
  background-color: var(--primary);
  color: var(--text-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  overflow-y: auto;
  padding: 2rem;
  display: none;
}

.cookie-settings.show {
  display: block;
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.cookie-settings-title {
  font-size: 1.5rem;
  margin: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 2rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  font-size: 1.25rem;
  margin: 0;
}

.cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-light);
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-light);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--secondary);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.cookie-category-description {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.cookie-settings-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.cookie-manage-button {
  background: none;
  border: none;
  color: var(--secondary);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}


.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}


.thanks-section {
  background-color: var(--bg-dark);
  padding: 8rem 0;
  text-align: center;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thanks-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}


@media (max-width: 1023px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.15rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .menu-icon {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .main-nav.show {
    transform: translateY(0);
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 0 0 1rem;
  }
  
  .main-nav li:last-child {
    margin-bottom: 0;
  }
  
  .card-image {
    height: 150px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}