
:root {
  --primary-color: #1A2026;
  --secondary-color: #D4AF37;
  --tertiary-color: #B76E79;
  --background-primary: #FFFFFF;
  --background-secondary: #F9F6F2;
  --text-primary: #1A2026;
  --text-secondary: #5D6970;
  --text-tertiary: #9DA6AB;
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background-color: var(--background-primary);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  margin-top: 0;
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.site-header {
  background-color: var(--background-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 50px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

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

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

.header-cta {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.header-cta:hover {
  background-color: var(--primary-color);
  color: white;
}


.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  color: var(--primary-color);
}

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .main-nav, .header-cta-container {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-primary);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    transition: var(--transition);
  }
  
  .mobile-nav.active {
    display: flex;
    transform: translateX(0);
  }
  
  .mobile-nav a {
    font-size: 18px;
    padding: 10px 0;
  }
  
  .mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
}


.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  background-color: var(--primary-color);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-cta {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background-color: #ffffff;
  color: var(--primary-color);
}


.featured-products {
  padding: 80px 0;
  background-color: var(--background-primary);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.product-name {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.product-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.btn-view {
  flex: 1;
  padding: 8px 15px;
  background-color: white;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-add {
  flex: 1;
  padding: 8px 15px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-view:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-add:hover {
  background-color: var(--tertiary-color);
}


.categories {
  padding: 80px 0;
  background-color: var(--background-secondary);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  position: relative;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover .category-image {
  transform: scale(1.05);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.category-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: white;
}

.category-description {
  font-size: 14px;
  margin-bottom: 15px;
}

.category-link {
  display: inline-block;
  color: white;
  font-weight: 500;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 2px;
  transition: var(--transition);
}

.category-link:hover {
  color: var(--secondary-color);
}


.benefits {
  padding: 80px 0;
  background-color: var(--background-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.benefit-card {
  padding: 30px 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: white;
  box-shadow: var(--box-shadow);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.benefit-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

.benefit-description {
  font-size: 14px;
  color: var(--text-secondary);
}


.newsletter {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 20px;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
}

.newsletter-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--tertiary-color);
}

.newsletter-privacy {
  font-size: 12px;
  margin-top: 15px;
  color: var(--text-tertiary);
}

.newsletter-privacy a {
  color: var(--secondary-color);
}

.newsletter-checkbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.newsletter-checkbox {
  margin-right: 10px;
}


.visual-block {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-color: var(--background-secondary);
}

.visual-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.catalog-section {
  padding: 60px 0;
}

.catalog-header {
  margin-bottom: 30px;
}

.filters-container {
  margin-bottom: 30px;
  padding: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.filters-toggle {
  display: none;
  width: 100%;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  margin-bottom: 20px;
  cursor: pointer;
}

.filters-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.filter-group {
  margin-bottom: 0;
}

.filter-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.filter-select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}


@media (max-width: 768px) {
  .filters-toggle {
    display: block;
  }
  
  .filters-form {
    display: none;
    grid-template-columns: 1fr;
  }
  
  .filters-form.active {
    display: grid;
  }
}


.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.product-modal.active {
  display: flex;
}

.product-modal-content {
  background-color: white;
  max-width: 900px;
  width: 90%;
  border-radius: var(--border-radius);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.product-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.product-modal-title {
  font-size: 22px;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
}

.product-modal-body {
  display: flex;
  padding: 20px;
  overflow-y: auto;
}

.product-modal-image {
  flex: 1;
  max-width: 400px;
  margin-right: 20px;
}

.product-modal-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.product-modal-details {
  flex: 1;
}

.product-modal-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-modal-description {
  margin-bottom: 20px;
}

.product-modal-actions {
  display: flex;
  gap: 15px;
}


.blog-section {
  padding: 60px 0;
}

.blog-header {
  margin-bottom: 40px;
  text-align: center;
}

.blog-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.blog-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  background-color: white;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-link {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
}

.blog-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.blog-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


.article {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.article-header {
  margin-bottom: 40px;
}

.article-title {
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--text-tertiary);
}

.article-author {
  display: flex;
  align-items: center;
}

.article-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.article-content {
  line-height: 1.8;
  color: var(--text-primary);
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h2 {
  font-size: 24px;
  margin: 40px 0 20px;
}

.article-content h3 {
  font-size: 20px;
  margin: 30px 0 15px;
}

.article-content img {
  max-width: 100%;
  border-radius: var(--border-radius);
  margin: 30px 0;
}


.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.contact-info {
  padding: 30px;
  background-color: var(--background-secondary);
  border-radius: var(--border-radius);
}

.contact-info-title {
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-details i {
  color: var(--secondary-color);
  font-size: 20px;
  width: 20px;
}

.contact-map {
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.contact-form-title {
  margin-bottom: 20px;
  font-size: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

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

.form-checkbox-wrapper {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.form-checkbox {
  margin-top: 3px;
}

.form-checkbox-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.form-checkbox-label a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.form-submit {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background-color: var(--primary-color);
}


.thanks-section {
  padding: 100px 0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 80px;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.thanks-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.thanks-message {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.thanks-btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.thanks-btn:hover {
  background-color: var(--primary-color);
}


.policy-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.policy-header {
  margin-bottom: 40px;
  text-align: center;
}

.policy-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.policy-updated {
  font-size: 14px;
  color: var(--text-tertiary);
}

.policy-content {
  line-height: 1.8;
  color: var(--text-primary);
}

.policy-content h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  font-weight: 500;
}

.policy-content h3 {
  font-size: 20px;
  margin: 30px 0 15px;
  font-weight: 500;
}

.policy-content p {
  margin-bottom: 20px;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}


.site-footer {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-description {
  color: #A0A7B0;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact p {
  display: flex;
  gap: 15px;
  align-items: center;
  color: #A0A7B0;
}

.footer-contact p i {
  color: var(--secondary-color);
  width: 20px;
}

.footer-navigation h3, .footer-policies h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.footer-navigation ul, .footer-policies ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-navigation li, .footer-policies li {
  margin-bottom: 10px;
}

.footer-navigation a, .footer-policies a {
  color: #A0A7B0;
  transition: var(--transition);
}

.footer-navigation a:hover, .footer-policies a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: #A0A7B0;
  font-size: 14px;
}

.footer-cookies {
  display: flex;
  gap: 15px;
}

.footer-cookies a {
  color: #A0A7B0;
  font-size: 14px;
  transition: var(--transition);
}

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


.cart-section {
  padding: 60px 0;
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty-icon {
  font-size: 60px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.cart-empty-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.cart-empty-message {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.cart-items {
  margin-bottom: 30px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.cart-item-details {
  padding-right: 20px;
}

.cart-item-brand {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.cart-item-name {
  font-size: 18px;
  margin-bottom: 5px;
}

.cart-item-price {
  font-weight: 600;
}

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

.cart-quantity-btn {
  background: none;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.cart-quantity-input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
}

.cart-item-total {
  font-weight: 600;
  font-size: 18px;
  width: 100px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: 18px;
}

.cart-item-remove:hover {
  color: var(--tertiary-color);
}

.cart-summary {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.cart-summary-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cart-summary-row:last-of-type {
  border-bottom: none;
}

.cart-summary-label {
  color: var(--text-secondary);
}

.cart-summary-total {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}

.cart-checkout {
  display: block;
  width: 100%;
  background-color: var(--secondary-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-top: 20px;
}

.cart-checkout:hover {
  background-color: var(--primary-color);
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 500;
}


.checkout-section {
  padding: 60px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.checkout-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.checkout-form-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section-title {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title i {
  color: var(--secondary-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.payment-methods {
  margin-top: 20px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.payment-method.active {
  border-color: var(--secondary-color);
  background-color: rgba(212, 175, 55, 0.05);
}

.payment-method-radio {
  margin: 0;
}

.payment-method-logo {
  width: 40px;
  height: auto;
}

.payment-method-name {
  font-weight: 500;
}

.checkout-order {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  align-self: flex-start;
}

.checkout-order-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.checkout-order-items {
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.checkout-item:last-child {
  border-bottom: none;
}

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

.checkout-item-name {
  font-size: 16px;
  margin-bottom: 5px;
}

.checkout-item-variant {
  font-size: 14px;
  color: var(--text-secondary);
}

.checkout-item-quantity {
  color: var(--text-tertiary);
  font-size: 14px;
}

.checkout-item-price {
  font-weight: 600;
}

.checkout-order-summary {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.checkout-total {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.checkout-submit {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.checkout-submit:hover {
  background-color: var(--primary-color);
}


.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent.active {
  transform: translateY(0);
  opacity: 1;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.cookie-title {
  font-size: 20px;
  margin: 0;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-tertiary);
}

.cookie-message {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept-all {
  background-color: var(--secondary-color);
  color: white;
  border: none;
}

.cookie-accept-all:hover {
  background-color: var(--primary-color);
}

.cookie-reject-all {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cookie-reject-all:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.cookie-preferences {
  display: none;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.cookie-preferences.active {
  display: block;
}

.cookie-category {
  margin-bottom: 20px;
}

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

.cookie-category-title {
  font-weight: 500;
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

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

.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--secondary-color);
}

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

.cookie-category-description {
  font-size: 14px;
  color: var(--text-secondary);
}

.cookie-preferences-btn {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 20px;
}

.cookie-save {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-save:hover {
  background-color: var(--primary-color);
}


@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .products-grid, .categories-grid, .benefits-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-btn {
    border-radius: var(--border-radius);
    width: 100%;
    padding: 12px;
  }
  
  .contact-grid, .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }
  
  .cart-item-image {
    grid-row: 1 / 3;
  }
  
  .cart-item-quantity, .cart-item-total {
    grid-column: 2;
  }
  
  .product-modal-body {
    flex-direction: column;
  }
  
  .product-modal-image {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: none;
  }
}


.iti {
  width: 100%;
}


@media (max-width: 480px) {
  .product-modal-content {
    width: 95%;
    max-height: 95vh;
  }
}


.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  transition: all 0.3s ease;
  transform: translateX(120%);
  opacity: 0;
}

.toast.active {
  transform: translateX(0);
  opacity: 1;
}

.toast-success {
  background-color: #28a745;
}

.toast-error {
  background-color: #dc3545;
}