@import './assets/fonts/tabler-icons.css';


/*main style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
font-family: 'Tahoma';
src: url('./assets/fonts/tahoma.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body ,button,a,p,select{
font-family: 'Tahoma', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p{
    line-height: 1.6;

}
/* Header */
header {
  background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
  color: white;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo {
  font-size: 28px;
  font-weight: bold;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
  display: block;
  padding: 5px 0;
}
.nav-links a:hover {
  color: #f7efe3;
}
/* Dropdown Menu */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-toggle::after {
  content: '▼';
  font-size: 12px;
  transition: transform 0.3s;
}
.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #6b4423;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  margin-top: 10px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  font-size: 16px;
}
.dropdown-menu a:hover {
  background: #8b5a2b;
}
.dropdown-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}
.dropdown-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}
.cta-button {
  background: white;
  color: #8b5a2b;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}
.cta-button:hover {
  transform: scale(1.05);
}
/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: #8b5a2b;
      flex-direction: column;
      padding: 20px;
      gap: 15px;
  }
  .nav-links.active {
      display: flex;
  }
  .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      margin-top: 10px;
      display: none;
  }
  .dropdown.active .dropdown-menu {
      display: block;
  }
  .dropdown-toggle::after {
      margin-right: auto;
  }
  .mobile-menu-toggle {
      display: block;
  }
  .cta-button {
      display: none;
  }
}
/* Hero Section */
.hero {
  /*background: linear-gradient(rgba(139, 90, 43, 0.8), rgba(107, 68, 35, 0.8)),
              url('http://localhost/vitecross/storage/uploads/2026/6/jpg/download.jpg') center/cover;*/
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}
.hero-button {
  background: white;
  color: #8b5a2b;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s;
}
.hero-button:hover {
  transform: scale(1.1);
}
/* Features Section */
.features {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-card .icon {
  font-size: 50px;
  margin-bottom: 15px;
}
.feature-card h3 {
  color: #8b5a2b;
  margin-bottom: 10px;
}
/* Products Preview */
.products-preview {
  background: white;
  padding: 60px 20px;
}
.products-preview h2 {
  text-align: center;
  color: #8b5a2b;
  font-size: 36px;
  margin-bottom: 40px;
}
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.product-card {
  background: #f7efe3;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-10px);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-info {
  padding: 20px;
  text-align: center;
}
.product-info h3 {
  color: #8b5a2b;
  margin-bottom: 10px;
}
.product-info .price {
  font-size: 22px;
  color: #6b4423;
  font-weight: bold;
  margin: 10px 0;
}
.product-info button {
  background: #8b5a2b;
  color: white;
  border: none;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}
.product-info button:hover {
  background: #6b4423;
}
/* Benefits Section */
.benefits {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.benefits h2 {
  text-align: center;
  color: #8b5a2b;
  font-size: 36px;
  margin-bottom: 40px;
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.benefit-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  border-right: 5px solid #8b5a2b;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.benefit-item h3 {
  color: #8b5a2b;
  margin-bottom: 10px;
}
/* Contact Section */
.contact {
  background: white;
  padding: 60px 20px;
}
.contact h2 {
  text-align: center;
  color: #8b5a2b;
  font-size: 36px;
  margin-bottom: 40px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #3b2f2f;
  font-weight: bold;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #8b5a2b;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.submit-button {
  background: #8b5a2b;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}
.submit-button:hover {
  background: #6b4423;
}
/* Footer */
footer {
  background: #3b2f2f;
  color: white;
  padding: 50px 20px 20px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-section h3 {
  color: #f7efe3;
  margin-bottom: 20px;
  font-size: 20px;
}
.footer-section p {
  margin-bottom: 10px;
  line-height: 1.8;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #8b5a2b;
}
.social-links {
  display: flex;
  gap: 15px;
  font-size: 24px;
}
.social-links a {
  color: white;
  text-decoration: none;
  transition: transform 0.3s;
}
.contact-container .social-section .social-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s;
  }
.social-links a:hover {
  transform: scale(1.2);
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .hero h1 {
      font-size: 32px;
  }
  .hero p {
      font-size: 18px;
  }
  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }
}
/*about.html style*/
        body {
            background: #f7efe3;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f7efe3;
        }
        .cart-icon {
            position: relative;
            background: white;
            color: #8b5a2b;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .cart-icon:hover {
            transform: scale(1.05);
        }
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s;
        }
        .hero-section {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .about-container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        .about-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .about-section h2 {
            color: #8b5a2b;
            font-size: 32px;
            margin-bottom: 25px;
            text-align: center;
        }
        .about-section p {
            color: #666;
            font-size: 18px;
            line-height: 2;
            text-align: justify;
            margin-bottom: 20px;
        }
        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .story-card {
            background: #f7efe3;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
        }
        .story-card:hover {
            transform: translateY(-5px);
        }
        .story-card .icon {
            font-size: 60px;
            margin-bottom: 20px;
        }
        .story-card h3 {
            color: #8b5a2b;
            font-size: 24px;
            margin-bottom: 15px;
        }
        .story-card p {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            text-align: center;
        }
        .values-section {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 40px;
        }
        .values-section h2 {
            color: white;
            font-size: 32px;
            margin-bottom: 40px;
            text-align: center;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .value-item {
            text-align: center;
            padding: 20px;
        }
        .value-item .icon {
            font-size: 50px;
            margin-bottom: 15px;
        }
        .value-item h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }
        .value-item p {
            font-size: 16px;
            line-height: 1.8;
            opacity: 0.9;
        }
        .team-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .team-section h2 {
            color: #8b5a2b;
            font-size: 32px;
            margin-bottom: 40px;
            text-align: center;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .team-member {
            text-align: center;
            padding: 20px;
            background: #f7efe3;
            border-radius: 15px;
            transition: transform 0.3s;
        }
        .team-member:hover {
            transform: translateY(-5px);
        }
        .team-member .avatar {
            font-size: 80px;
            margin-bottom: 15px;
        }
        .team-member h3 {
            color: #8b5a2b;
            font-size: 22px;
            margin-bottom: 5px;
        }
        .team-member .role {
            color: #666;
            font-size: 16px;
            margin-bottom: 15px;
        }
        .team-member p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .stat-card .number {
            color: #8b5a2b;
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .stat-card .label {
            color: #666;
            font-size: 18px;
        }
        .cta-section {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            margin-bottom: 40px;
        }
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .cta-button {
            background: white;
            color: #8b5a2b;
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        footer {
            background: #3b2f2f;
            color: white;
            padding: 50px 20px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f7efe3;
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-section p {
            margin-bottom: 10px;
            line-height: 1.8;
        }
        .footer-links {
            list-style: none;
        }
       
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
                flex-direction: column;
                gap: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }
            .nav-links.active {
                max-height: none;
                overflow: visible;
            }
            .nav-links li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links a {
                display: block;
                padding: 15px 20px;
            }
            .hero-section h1 {
                font-size: 32px;
            }
            .hero-section p {
                font-size: 16px;
            }
            .about-section {
                padding: 30px 20px;
            }
            .about-section h2 {
                font-size: 24px;
            }
            .about-section p {
                font-size: 16px;
            }
            .values-section {
                padding: 30px 20px;
            }
            .team-section {
                padding: 30px 20px;
            }
            .cta-section {
                padding: 40px 20px;
            }
            .cta-section h2 {
                font-size: 28px;
            }
        }
/* about.html*/
        /* Header */
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            display: block;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #f7efe3;
        }
        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }
        .dropdown-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .dropdown-toggle::after {
            content: '▼';
            font-size: 12px;
            transition: transform 0.3s;
        }
        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: #6b4423;
            min-width: 200px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            margin-top: 10px;
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu li {
            list-style: none;
        }
        .dropdown-menu a {
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            display: block;
            transition: background 0.3s;
            font-size: 16px;
        }
        .dropdown-menu a:hover {
            background: #8b5a2b;
        }
        .dropdown-menu li:first-child a {
            border-radius: 8px 8px 0 0;
        }
        .dropdown-menu li:last-child a {
            border-radius: 0 0 8px 8px;
        }
        .cta-button {
            background: white;
            color: #8b5a2b;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .cta-button:hover {
            transform: scale(1.05);
        }
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #8b5a2b;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                margin-top: 10px;
                display: none;
            }
            .dropdown.active .dropdown-menu {
                display: block;
            }
            .dropdown-toggle::after {
                margin-right: auto;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .cta-button {
                display: none;
            }
        }

        /* Blog Section */
        .blog-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .blog-card:hover {
            transform: translateY(-10px);
        }
        .blog-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .blog-content {
            padding: 25px;
        }
        .blog-date {
            color: #8b5a2b;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .blog-title {
            font-size: 22px;
            color: #3b2f2f;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .blog-excerpt {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.7;
        }
        .read-more {
            display: inline-block;
            color: #8b5a2b;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        .read-more:hover {
            color: #6b4423;
        }
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin: 40px 0;
        }
        .pagination a,
        .pagination span {
            padding: 10px 15px;
            border: 2px solid #8b5a2b;
            border-radius: 8px;
            text-decoration: none;
            color: #8b5a2b;
            font-weight: bold;
            transition: all 0.3s;
        }
        .pagination a:hover {
            background: #8b5a2b;
            color: white;
        }
        .pagination .active {
            background: #8b5a2b;
            color: white;
        }
        .pagination .disabled {
            opacity: 0.5;
            cursor: not-allowed;
            border-color: #ccc;
            color: #ccc;
        }
        .pagination .disabled:hover {
            background: transparent;
            color: #ccc;
        }
        /* Footer */
        footer {
            background: #3b2f2f;
            color: white;
            padding: 50px 20px 20px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f7efe3;
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-section p {
            margin-bottom: 10px;
            line-height: 1.8;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
    
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            .hero p {
                font-size: 18px;
            }
            .blog-grid {
                grid-template-columns: 1fr;
            }
            .pagination {
                flex-wrap: wrap;
                gap: 8px;
            }
            .pagination a,
            .pagination span {
                padding: 8px 12px;
                font-size: 14px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
/*cart.html*/
/* Header */
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 28px;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f7efe3;
}
.cart-icon {
    position: relative;
    background: white;
    color: #8b5a2b;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}
.cart-icon:hover {
    transform: scale(1.05);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}
/* Page Header */
.page-header {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.page-header h1 {
    color: #8b5a2b;
    font-size: 36px;
    margin-bottom: 10px;
}
.breadcrumb {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}
.breadcrumb a {
    color: #8b5a2b;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
/* Cart Container */
.cart-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}
/* Cart Items Section */
.cart-items-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.cart-items-section h2 {
    color: #8b5a2b;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f7efe3;
}
.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.cart-item:last-child {
    border-bottom: none;
}
.item-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}
.item-details {
    flex: 1;
}
.item-title {
    color: #8b5a2b;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.item-price {
    color: #666;
    font-size: 18px;
    margin-bottom: 15px;
}
.item-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7efe3;
    padding: 8px 15px;
    border-radius: 25px;
}
.qty-btn {
    background: #8b5a2b;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s;
}
.qty-btn:hover {
    background: #6b4423;
}
.qty-display {
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    font-size: 18px;
}
.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}
.remove-btn:hover {
    background: #c0392b;
}
.item-subtotal {
    text-align: left;
    color: #8b5a2b;
    font-size: 20px;
    font-weight: bold;
}
/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}
.empty-cart-icon {
    font-size: 80px;
    margin-bottom: 20px;
}
.empty-cart h3 {
    color: #8b5a2b;
    font-size: 24px;
    margin-bottom: 15px;
}
.empty-cart p {
    color: #666;
    margin-bottom: 25px;
}
.continue-shopping {
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}
.continue-shopping:hover {
    transform: scale(1.05);
}
/* Order Summary */
.order-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}
.order-summary h2 {
    color: #8b5a2b;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f7efe3;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}
.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f7efe3;
    color: #8b5a2b;
    font-size: 22px;
    font-weight: bold;
}
.discount-code {
    margin: 25px 0;
}
.discount-code input {
    width: 100%;
    padding: 12px;
    border: 2px solid #8b5a2b;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
}
.apply-discount {
    width: 100%;
    background: white;
    color: #8b5a2b;
    border: 2px solid #8b5a2b;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}
.apply-discount:hover {
    background: #8b5a2b;
    color: white;
}
.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 20px;
}
.checkout-btn:hover {
    transform: translateY(-2px);
}
.secure-checkout {
    text-align: center;
    color: #27ae60;
    font-size: 14px;
    margin-top: 15px;
}
/* Footer */
footer {
    background: #3b2f2f;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-section h3 {
    color: #f7efe3;
    margin-bottom: 20px;
    font-size: 20px;
}
.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .nav-links.active {
        max-height: 350px;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links a {
        display: block;
        padding: 15px 20px;
    }
    .page-header h1 {
        font-size: 28px;
    }
    .cart-container {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .item-image {
        width: 100%;
        height: 200px;
    }
    .item-controls {
        flex-direction: column;
        width: 100%;
    }
    .qty-controls {
        width: 100%;
        justify-content: center;
    }
    .item-subtotal {
        text-align: center;
    }
}
/* checkout html*/
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 28px;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f7efe3;
}
.cart-icon {
    position: relative;
    background: white;
    color: #8b5a2b;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}
.cart-icon:hover {
    transform: scale(1.05);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}
.page-header {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.page-header h1 {
    color: #8b5a2b;
    font-size: 36px;
    margin-bottom: 10px;
}
.breadcrumb {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}
.breadcrumb a {
    color: #8b5a2b;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.checkout-steps {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #f7efe3;
    border-radius: 25px;
    color: #8b5a2b;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.step.active {
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
}
.step.completed {
    background: #27ae60;
    color: white;
}
.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    color: #8b5a2b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.step.active .step-number {
    background: #f7efe3;
}
.step.completed .step-number {
    background: white;
    color: #27ae60;
}
.checkout-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}
.checkout-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.form-section {
    display: none;
}
.form-section.active {
    display: block;
}
.form-section h2 {
    color: #8b5a2b;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f7efe3;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: #666;
    margin-bottom: 8px;
    font-weight: bold;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b5a2b;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.payment-methods {
    display: grid;
    gap: 15px;
}
.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-option:hover {
    border-color: #8b5a2b;
    background: #f7efe3;
}
.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    cursor: pointer;
}
.payment-option label {
    cursor: pointer;
    flex: 1;
    font-size: 16px;
    color: #333;
}
.payment-icon {
    font-size: 24px;
    margin-left: 10px;
}
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}
.nav-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.prev-btn {
    background: #ddd;
    color: #666;
}
.prev-btn:hover {
    background: #ccc;
}
.next-btn {
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
    flex: 1;
}
.next-btn:hover {
    transform: translateY(-2px);
}
.order-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}
.order-summary h2 {
    color: #8b5a2b;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f7efe3;
}
.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.order-item:last-child {
    border-bottom: none;
}
.order-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}
.order-item-info {
    flex: 1;
}
.order-item-title {
    color: #8b5a2b;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}
.order-item-qty {
    color: #666;
    font-size: 13px;
}
.order-item-price {
    color: #8b5a2b;
    font-weight: bold;
    font-size: 14px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    padding-top: 15px;
}
.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f7efe3;
    color: #8b5a2b;
    font-size: 22px;
    font-weight: bold;
}
.place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 20px;
    display: none;
}
.place-order-btn.show {
    display: block;
}
.place-order-btn:hover {
    transform: translateY(-2px);
}
.secure-checkout {
    text-align: center;
    color: #27ae60;
    font-size: 14px;
    margin-top: 15px;
}
footer {
    background: #3b2f2f;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-section h3 {
    color: #f7efe3;
    margin-bottom: 20px;
    font-size: 20px;
}
.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .nav-links.active {
        max-height: 350px;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links a {
        display: block;
        padding: 15px 20px;
    }
    .page-header h1 {
        font-size: 28px;
    }
    .checkout-steps {
        flex-direction: column;
        gap: 10px;
    }
    .checkout-container {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* contact us html*/
        body {
            background: #f7efe3;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f7efe3;
        }
        .cart-icon {
            position: relative;
            background: white;
            color: #8b5a2b;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .cart-icon:hover {
            transform: scale(1.05);
        }
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s;
        }
        .hero-section {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .contact-container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .contact-form-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .contact-form-section h2 {
            color: #8b5a2b;
            font-size: 32px;
            margin-bottom: 25px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            color: #666;
            font-size: 16px;
            margin-bottom: 8px;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8b5a2b;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .submit-btn {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
        }
        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .info-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s;
        }
        .info-card:hover {
            transform: translateY(-5px);
        }
        .info-card .icon {
            font-size: 50px;
            min-width: 70px;
            text-align: center;
        }
        .info-card .content h3 {
            color: #8b5a2b;
            font-size: 20px;
            margin-bottom: 10px;
        }
        .info-card .content p {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
        }
        .map-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        .map-section h2 {
            color: #8b5a2b;
            font-size: 32px;
            margin-bottom: 25px;
            text-align: center;
        }
        .map-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #f7efe3 0%, #e8dcc8 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            border: 3px dashed #8b5a2b;
        }
        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        .faq-section h2 {
            color: #8b5a2b;
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
        }
        .faq-item {
            margin-bottom: 20px;
            border: 2px solid #f7efe3;
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            background: #f7efe3;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        .faq-question:hover {
            background: #e8dcc8;
        }
        .faq-question h3 {
            color: #8b5a2b;
            font-size: 18px;
            margin: 0;
        }
        .faq-question .toggle {
            font-size: 24px;
            color: #8b5a2b;
            transition: transform 0.3s;
        }
        .faq-question.active .toggle {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .faq-answer.active {
            max-height: 500px;
        }
        .faq-answer p {
            padding: 20px;
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin: 0;
        }
        .social-section {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            margin-bottom: 40px;
        }
        .social-section h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        .social-section p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .social-link {
            background: white;
            color: #8b5a2b;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            text-decoration: none;
            transition: transform 0.3s;
        }
        .social-link:hover {
            transform: scale(1.1);
        }
        .success-message {
            display: none;
            background: #27ae60;
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
        }
        .success-message.show {
            display: block;
        }
        footer {
            background: #3b2f2f;
            color: white;
            padding: 50px 20px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f7efe3;
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-section p {
            margin-bottom: 10px;
            line-height: 1.8;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #8b5a2b;
        }
        .footer-social-links {
            display: flex;
            gap: 15px;
            font-size: 24px;
        }
        .footer-social-links a {
            color: white;
            text-decoration: none;
            transition: transform 0.3s;
        }
        .footer-social-links a:hover {
            transform: scale(1.2);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
                flex-direction: column;
                gap: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }
            .nav-links.active {
                max-height: 400px;
            }
            .nav-links li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links a {
                display: block;
                padding: 15px 20px;
            }
            .hero-section h1 {
                font-size: 32px;
            }
            .hero-section p {
                font-size: 16px;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .contact-form-section,
            .map-section,
            .faq-section,
            .social-section {
                padding: 30px 20px;
            }
            .contact-form-section h2,
            .map-section h2,
            .faq-section h2,
            .social-section h2 {
                font-size: 24px;
            }
            .map-placeholder {
                height: 300px;
            }
        }
        /* dashboard html*/
        body {
            background: #f7efe3;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f7efe3;
        }
        .cart-icon {
            position: relative;
            background: white;
            color: #8b5a2b;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .cart-icon:hover {
            transform: scale(1.05);
        }
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s;
        }
        .dashboard-container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
        }
        .sidebar {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .user-profile {
            text-align: center;
            padding-bottom: 25px;
            border-bottom: 2px solid #f7efe3;
            margin-bottom: 25px;
        }
        .user-avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            margin: 0 auto 15px;
        }
        .user-name {
            color: #8b5a2b;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .user-email {
            color: #666;
            font-size: 14px;
        }
        .sidebar-menu {
            list-style: none;
        }
        .sidebar-menu li {
            margin-bottom: 10px;
        }
        .sidebar-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            color: #666;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s;
            font-size: 16px;
        }
        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
        }
        .sidebar-menu .icon {
            font-size: 22px;
            width: 30px;
            text-align: center;
        }
        .logout-btn {
            margin-top: 20px;
            width: 100%;
            padding: 15px;
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .logout-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }
        .main-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            min-height: 600px;
        }
        .content-section {
            display: none;
        }
        .content-section.active {
            display: block;
        }
        .section-title {
            color: #8b5a2b;
            font-size: 32px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #f7efe3;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .stat-card {
            background: linear-gradient(135deg, #f7efe3 0%, #e8dcc8 100%);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #8b5a2b;
        }
        .stat-icon {
            font-size: 40px;
            margin-bottom: 10px;
        }
        .stat-value {
            font-size: 32px;
            font-weight: bold;
            color: #8b5a2b;
            margin-bottom: 5px;
        }
        .stat-label {
            color: #666;
            font-size: 14px;
        }
        .orders-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        .orders-table th {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            padding: 15px;
            text-align: right;
            font-size: 16px;
        }
        .orders-table td {
            padding: 15px;
            border-bottom: 1px solid #f7efe3;
            color: #666;
        }
        .orders-table tr:hover {
            background: #f7efe3;
        }
        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            display: inline-block;
        }
        .status-completed {
            background: #27ae60;
            color: white;
        }
        .status-processing {
            background: #f39c12;
            color: white;
        }
        .status-pending {
            background: #e74c3c;
            color: white;
        }
        .status-cancelled {
            background: #95a5a6;
            color: white;
        }
        .view-btn {
            background: #8b5a2b;
            color: white;
            padding: 8px 16px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }
        .view-btn:hover {
            background: #6b4423;
            transform: translateY(-2px);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            color: #666;
            font-size: 16px;
            margin-bottom: 8px;
            font-weight: bold;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8b5a2b;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .save-btn {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .save-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
        }
        .address-card {
            background: #f7efe3;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            border: 2px solid #8b5a2b;
        }
        .address-card h3 {
            color: #8b5a2b;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .address-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 8px;
        }
        .address-actions {
            margin-top: 15px;
            display: flex;
            gap: 10px;
        }
        .edit-btn, .delete-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }
        .edit-btn {
            background: #3498db;
            color: white;
        }
        .delete-btn {
            background: #e74c3c;
            color: white;
        }
        .edit-btn:hover, .delete-btn:hover {
            transform: translateY(-2px);
        }
        .add-address-btn {
            background: #27ae60;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        .add-address-btn:hover {
            background: #229954;
            transform: translateY(-2px);
        }
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        .empty-state .icon {
            font-size: 80px;
            margin-bottom: 20px;
        }
        .empty-state h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #666;
        }
        .empty-state p {
            font-size: 16px;
            margin-bottom: 20px;
        }
        .shop-btn {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s;
        }
        .shop-btn:hover {
            transform: translateY(-2px);
        }
        .order-detail-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .order-detail-modal.active {
            display: flex;
        }
        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #666;
            transition: color 0.3s;
        }
        .close-modal:hover {
            color: #e74c3c;
        }
        .order-items {
            margin-top: 20px;
        }
        .order-item {
            display: flex;
            gap: 15px;
            padding: 15px;
            background: #f7efe3;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        .order-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
        }
        .order-item-info {
            flex: 1;
        }
        .order-item-info h4 {
            color: #8b5a2b;
            margin-bottom: 5px;
        }
        .order-item-info p {
            color: #666;
            font-size: 14px;
        }
        .success-message {
            background: #27ae60;
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: none;
        }
        .success-message.show {
            display: block;
        }
        @media (max-width: 1024px) {
            .dashboard-container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
                flex-direction: column;
                gap: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }
            .nav-links.active {
                max-height: 400px;
            }
            .nav-links li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links a {
                display: block;
                padding: 15px 20px;
            }
            .main-content {
                padding: 20px;
            }
            .section-title {
                font-size: 24px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .orders-table {
                font-size: 14px;
            }
            .orders-table th,
            .orders-table td {
                padding: 10px;
            }
            .modal-content {
                padding: 20px;
            }
        }
body {
    background: #f7efe3;
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 28px;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f7efe3;
}
.cart-icon {
    position: relative;
    background: white;
    color: #8b5a2b;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}
.cart-icon:hover {
    transform: scale(1.05);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}
.success-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}
.success-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}
.success-icon {
    font-size: 100px;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}
@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
.success-title {
    color: #27ae60;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}
.success-message {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.order-info {
    background: #f7efe3;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: right;
}
.order-info h3 {
    color: #8b5a2b;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
}
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.info-row:last-child {
    border-bottom: none;
}
.info-label {
    color: #666;
    font-weight: bold;
}
.info-value {
    color: #333;
}
.order-items {
    margin-top: 30px;
}
.order-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
}
.order-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}
.order-item-details {
    flex: 1;
    text-align: right;
}
.order-item-name {
    color: #8b5a2b;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}
.order-item-qty {
    color: #666;
    font-size: 14px;
}
.order-item-price {
    color: #8b5a2b;
    font-weight: bold;
    font-size: 18px;
}
.total-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}
.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #666;
}
.total-row.final {
    border-top: 2px solid #f7efe3;
    margin-top: 15px;
    padding-top: 15px;
    color: #8b5a2b;
    font-size: 22px;
    font-weight: bold;
}
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}
.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}
.btn-secondary {
    background: white;
    color: #8b5a2b;
    border: 2px solid #8b5a2b;
}
.btn-secondary:hover {
    background: #f7efe3;
}
.tracking-info {
    background: #e8f5e9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}
.tracking-info p {
    color: #27ae60;
    font-size: 16px;
    line-height: 1.8;
}
footer {
    background: #3b2f2f;
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-section h3 {
    color: #f7efe3;
    margin-bottom: 20px;
    font-size: 20px;
}
.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .nav-links.active {
        max-height: 350px;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links a {
        display: block;
        padding: 15px 20px;
    }
    .success-card {
        padding: 30px 20px;
    }
    .success-icon {
        font-size: 80px;
    }
    .success-title {
        font-size: 28px;
    }
    .success-message {
        font-size: 16px;
    }
    .action-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .order-item {
        flex-direction: column;
        text-align: center;
    }
    .order-item-details {
        text-align: center;
    }
}
/* post.html*/
        /* Header */
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            display: block;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #f7efe3;
        }
        .dropdown {
            position: relative;
        }
        .dropdown-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .dropdown-toggle::after {
            content: '▼';
            font-size: 12px;
            transition: transform 0.3s;
        }
        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: #6b4423;
            min-width: 200px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            margin-top: 10px;
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu li {
            list-style: none;
        }
        .dropdown-menu a {
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            display: block;
            transition: background 0.3s;
            font-size: 16px;
        }
        .dropdown-menu a:hover {
            background: #8b5a2b;
        }
        .dropdown-menu li:first-child a {
            border-radius: 8px 8px 0 0;
        }
        .dropdown-menu li:last-child a {
            border-radius: 0 0 8px 8px;
        }
        .cta-button {
            background: white;
            color: #8b5a2b;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .cta-button:hover {
            transform: scale(1.05);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #8b5a2b;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                margin-top: 10px;
                display: none;
            }
            .dropdown.active .dropdown-menu {
                display: block;
            }
            .dropdown-toggle::after {
                margin-right: auto;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .cta-button {
                display: none;
            }
        }
        /* Post Container */
        .post-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
        }
        /* Post Header */
        .post-header {
            margin-bottom: 30px;
        }
        .post-title {
            font-size: 36px;
            color: #3b2f2f;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .post-meta {
            display: flex;
            gap: 20px;
            color: #666;
            font-size: 15px;
            flex-wrap: wrap;
        }
        .post-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        /* Featured Image */
        .featured-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        /* Post Content */
        .post-content {
            line-height: 2;
            color: #3b2f2f;
            font-size: 18px;
        }
        .post-content h2 {
            color: #8b5a2b;
            font-size: 28px;
            margin: 35px 0 20px;
        }
        .post-content h3 {
            color: #6b4423;
            font-size: 24px;
            margin: 30px 0 15px;
        }
        .post-content p {
            margin-bottom: 20px;
        }
        .post-content ul, .post-content ol {
            margin: 20px 0 20px 30px;
        }
        .post-content li {
            margin-bottom: 10px;
        }
        .post-content strong {
            color: #8b5a2b;
        }
        /* Related Posts Section */
        .related-posts {
            margin: 60px 0;
            padding: 40px;
            background: #f7efe3;
            border-radius: 15px;
        }
        .related-posts h2 {
            color: #8b5a2b;
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        .related-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .related-card:hover {
            transform: translateY(-5px);
        }
        .related-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .related-content {
            padding: 20px;
        }
        .related-title {
            font-size: 18px;
            color: #3b2f2f;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .related-date {
            color: #8b5a2b;
            font-size: 14px;
        }
        /* Comments Section */
        .comments-section {
            margin: 60px 0;
        }
        .comments-section h2 {
            color: #8b5a2b;
            font-size: 28px;
            margin-bottom: 30px;
        }
        .comment-form {
            background: #f7efe3;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            color: #3b2f2f;
            font-weight: bold;
            margin-bottom: 8px;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: 'Tahoma', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8b5a2b;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .submit-btn {
            background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
            color: white;
            padding: 12px 35px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        /* Comments List */
        .comments-list {
            margin-top: 40px;
        }
        .comment {
            background: white;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .comment-author {
            font-weight: bold;
            color: #8b5a2b;
            font-size: 18px;
        }
        .comment-date {
            color: #999;
            font-size: 14px;
        }
        .comment-text {
            color: #3b2f2f;
            line-height: 1.8;
        }
        /* Footer */
        footer {
            background: #3b2f2f;
            color: white;
            padding: 50px 20px 20px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f7efe3;
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-section p {
            margin-bottom: 10px;
            line-height: 1.8;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
    
        @media (max-width: 768px) {
            .post-title {
                font-size: 28px;
            }
            .featured-image {
                height: 300px;
            }
            .post-content {
                font-size: 16px;
            }
            .post-content h2 {
                font-size: 24px;
            }
            .post-content h3 {
                font-size: 20px;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .comment-form {
                padding: 20px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
/* product.html*/
/* Header */
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 28px;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f7efe3;
}
.cart-icon {
    position: relative;
    background: white;
    color: #8b5a2b;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}
.cart-icon:hover {
    transform: scale(1.05);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}
/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
}
.breadcrumb a {
    color: #8b5a2b;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
/* Product Section */
.product-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.thumbnail {
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s;
}
.thumbnail:hover,
.thumbnail.active {
    border-color: #8b5a2b;
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.product-badge-container {
    display: flex;
    gap: 10px;
}
.badge {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}
.badge.organic {
    background: #27ae60;
}
.product-title {
    color: #8b5a2b;
    font-size: 32px;
    font-weight: bold;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
.stars {
    color: #f39c12;
}
.rating-count {
    color: #888;
    font-size: 14px;
}
.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.current-price {
    color: #8b5a2b;
    font-size: 36px;
    font-weight: bold;
}
.old-price {
    color: #999;
    font-size: 24px;
    text-decoration: line-through;
}
.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.product-description {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}
.product-features {
    background: #f7efe3;
    padding: 20px;
    border-radius: 10px;
}
.product-features h3 {
    color: #8b5a2b;
    margin-bottom: 15px;
    font-size: 18px;
}
.product-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-features li {
    color: #666;
    padding-right: 20px;
    position: relative;
}
.product-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #27ae60;
    font-weight: bold;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}
.quantity-selector label {
    color: #3b2f2f;
    font-weight: bold;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 2px solid #8b5a2b;
    border-radius: 10px;
    padding: 10px 20px;
}
.qty-btn {
    background: #8b5a2b;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background 0.3s;
}
.qty-btn:hover {
    background: #6b4423;
}
.qty-display {
    font-size: 20px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}
.action-buttons {
    display: flex;
    gap: 15px;
}
.add-to-cart-btn {
    flex: 1;
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}
.add-to-cart-btn:hover {
    transform: translateY(-2px);
}
.buy-now-btn {
    flex: 1;
    background: white;
    color: #8b5a2b;
    border: 2px solid #8b5a2b;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.buy-now-btn:hover {
    background: #8b5a2b;
    color: white;
}
/* Tabs Section */
.tabs-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}
.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}
.tab-btn.active {
    color: #8b5a2b;
    border-bottom-color: #8b5a2b;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.description-content {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}
.description-content h3 {
    color: #8b5a2b;
    margin: 20px 0 10px;
}
/* Reviews Section */
.reviews-summary {
    background: #f7efe3;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.rating-overview {
    text-align: center;
}
.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #8b5a2b;
}
.rating-stars {
    color: #f39c12;
    font-size: 24px;
    margin: 10px 0;
}
.rating-bars {
    flex: 1;
}
.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.bar-label {
    min-width: 60px;
    color: #666;
}
.bar {
    flex: 1;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: #f39c12;
}
.bar-count {
    min-width: 40px;
    color: #888;
    font-size: 14px;
}
.review-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8b5a2b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}
.reviewer-name {
    font-weight: bold;
    color: #3b2f2f;
}
.review-date {
    color: #888;
    font-size: 14px;
}
.review-rating {
    color: #f39c12;
}
.review-text {
    color: #666;
    line-height: 1.8;
}
.review-form {
    background: #f7efe3;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}
.review-form h3 {
    color: #8b5a2b;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3b2f2f;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #8b5a2b;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.star-rating {
    display: flex;
    gap: 10px;
    font-size: 30px;
    cursor: pointer;
}
.star-rating span {
    color: #ddd;
    transition: color 0.3s;
}
.star-rating span:hover,
.star-rating span.active {
    color: #f39c12;
}
.submit-review-btn {
    background: #8b5a2b;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}
.submit-review-btn:hover {
    background: #6b4423;
}
/* Related Products */
.related-products {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.related-products h2 {
    color: #8b5a2b;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card-info {
    padding: 20px;
}
.product-card-title {
    color: #8b5a2b;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-card-price {
    color: #8b5a2b;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.product-card-btn {
    width: 100%;
    background: #8b5a2b;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.product-card-btn:hover {
    background: #6b4423;
}
/* Footer */
footer {
    background: #3b2f2f;
    color: white;
    padding: 50px 20px 20px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-section h3 {
    color: #f7efe3;
    margin-bottom: 20px;
    font-size: 20px;
}
.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .nav-links.active {
        max-height: 350px;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links a {
        display: block;
        padding: 15px 20px;
    }
    .product-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .main-image {
        height: 350px;
    }
    .thumbnail-images {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-title {
        font-size: 24px;
    }
    .current-price {
        font-size: 28px;
    }
    .action-buttons {
        flex-direction: column;
    }
    .reviews-summary {
        flex-direction: column;
        gap: 20px;
    }
    .tabs {
        overflow-x: auto;
    }
    .tab-btn {
        white-space: nowrap;
    }
}
/* shop.html*/
/* Header */
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 28px;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f7efe3;
}
.cart-icon {
    position: relative;
    background: white;
    color: #8b5a2b;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}
.cart-icon:hover {
    transform: scale(1.05);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
/* Shop Header */
.shop-header {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.shop-header h1 {
    color: #8b5a2b;
    font-size: 36px;
    margin-bottom: 10px;
}
.shop-header p {
    color: #666;
    font-size: 18px;
}
/* Filter Section */
.filter-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.filter-btn {
    padding: 10px 20px;
    border: 2px solid #8b5a2b;
    background: white;
    color: #8b5a2b;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Tahoma', 'Arial', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
    background: #8b5a2b;
    color: white;
}
/* Products Grid */
.products-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}
.product-info {
    padding: 20px;
}
.product-title {
    color: #8b5a2b;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.product-weight {
    color: #888;
    font-size: 14px;
}
.product-rating {
    color: #f39c12;
    font-size: 14px;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.product-price {
    color: #8b5a2b;
    font-size: 22px;
    font-weight: bold;
}
.price-unit {
    font-size: 14px;
    color: #888;
}
.add-to-cart {
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Tahoma', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s;
}
.add-to-cart:hover {
    transform: scale(1.05);
}
/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    left: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.active {
    left: 0;
}
.cart-header {
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h2 {
    font-size: 24px;
}
.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}
.cart-item-info {
    flex: 1;
}
.cart-item-title {
    color: #8b5a2b;
    font-weight: bold;
    margin-bottom: 5px;
}
.cart-item-price {
    color: #666;
    font-size: 14px;
}
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.qty-btn {
    background: #8b5a2b;
    color: white;
    border: none;
    /*width: 25px;
    height: 25px;*/
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    padding:10px;
}
.qty-display {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}
.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    margin-right: auto;
}
.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}
.cart-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}
.cart-footer {
    padding: 20px;
    border-top: 2px solid #eee;
    background: #f7efe3;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #8b5a2b;
}
.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}
.checkout-btn:hover {
    transform: scale(1.02);
}
/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1999;
}
.cart-overlay.active {
    display: block;
}
/* Footer */
footer {
    background: #3b2f2f;
    color: white;
    padding: 50px 20px 20px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-section h3 {
    color: #f7efe3;
    margin-bottom: 20px;
    font-size: 20px;
}
.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 18px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8b5a2b 0%, #6b4423 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .nav-links.active {
        max-height: 350px;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links a {
        display: block;
        padding: 15px 20px;
    }
    .shop-header h1 {
        font-size: 28px;
    }
    .cart-sidebar {
        width: 100%;
        left: -100%;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
.pagination {
    list-style: none;
  
}
.page-item.active span{
    color:var(--text-light-color-inv);
}