/* ============================================
   TRENDY – Premium Premix Brand Website
   Premium Brown/Gold Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --brown-dark: #3E2723;
  --brown-medium: #5D4037;
  --brown-light: #8D6E63;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --cream: #FFF8E1;
  --cream-dark: #F5E6C8;
  --amber: #F57F17;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray: #757575;
  --gray-light: #E0E0E0;
  --success: #4CAF50;
  --danger: #E53935;
  --shadow: 0 4px 20px rgba(62, 39, 35, 0.15);
  --shadow-lg: 0 8px 40px rgba(62, 39, 35, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --pattern-gold: radial-gradient(var(--gold) 1px, transparent 1px);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--brown-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  margin: 15px auto 0;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 160, 23, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--brown-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(62, 39, 35, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}



.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.navbar-brand .brand-tag {
  font-size: 0.65rem;
  color: var(--cream-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--cream-dark);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream-dark);
  font-size: 1.5rem;
  transition: var(--transition);
  padding: 5px;
}

.cart-btn:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--cream-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(62, 39, 35, 0.92), rgba(93, 64, 55, 0.88)),
    url('../images/background.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, 5%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.2rem;
  color: var(--cream-dark);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* ---------- Featured Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card .product-image {
  height: 250px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--amber), #FFB300);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(245, 127, 23, 0.3);
  z-index: 2;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 250px);
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.product-info .product-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.5;
  flex: 1;
  min-height: 3.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-info .product-weight {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--brown-light);
  font-weight: 500;
  margin-bottom: 10px;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.product-pricing .retail-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.product-pricing .wholesale-price {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 500;
  background: rgba(76, 175, 80, 0.1);
  padding: 2px 10px;
  border-radius: 20px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 42px;
  width: 100%;
}

.qty-selector button {
  flex: 1;
  height: 100%;
  border: none;
  background: var(--cream);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-selector button:hover {
  background: var(--gold-light);
  color: var(--brown-dark);
}

.qty-selector button:active {
  background: var(--gold);
  color: var(--white);
  transform: scale(0.95);
}

.qty-selector input {
  width: 60px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--gray-light);
  border-right: 1px solid var(--gray-light);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  background: var(--white);
  outline: none;
}

.qty-selector input::-webkit-inner-spin-button,
.qty-selector input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.add-to-cart-btn {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.2);
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

.add-to-cart-btn.added {
  background: var(--success);
}

/* ---------- USP Section ---------- */
.usp-section {
  background: var(--white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.usp-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.usp-card:hover {
  background: var(--cream);
  transform: translateY(-5px);
}

.usp-card .usp-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.usp-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.usp-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
  color: var(--white);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-subtitle {
  color: var(--cream-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--cream-dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown-dark);
}

.testimonial-author .author-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.testimonial-author .author-info span {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: var(--brown-dark);
  color: var(--gold);
}

.cta-banner .btn:hover {
  background: var(--white);
  color: var(--brown-dark);
}

/* ---------- Filter Tabs ---------- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 12px 32px;
  border: 2px solid var(--brown-light);
  border-radius: 50px;
  background: var(--white);
  color: var(--brown-medium);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(62, 39, 35, 0.2);
}

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, rgba(62, 39, 35, 0.95), rgba(93, 64, 55, 0.9)),
    url('https://images.unsplash.com/photo-1511910849309-0dffb8c85146?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 140px 20px 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--cream-dark);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--cream-dark);
}

/* ---------- Bulk Orders Page ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.benefit-card:hover::after {
  opacity: 1;
  transform: translate(10%, 10%);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0);
  transition: var(--transition);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card .benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--cream);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotateY(360deg);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--brown-dark);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.pricing-table thead {
  background: var(--brown-dark);
}

.pricing-table th {
  padding: 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  color: var(--brown-dark);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--cream);
}

.pricing-table td strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.pricing-table small {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.serve-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.serve-card:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: scale(1.03);
}

.serve-card .serve-icon {
  width: 70px;
  height: 70px;
  background: var(--cream-dark);
  color: var(--brown-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.serve-card:hover .serve-icon {
  background: var(--gold);
  color: var(--white);
}

.serve-card h3 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--brown-dark);
}

/* ---------- Process Section ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 35px;
  right: -25px;
  color: var(--gold);
  font-size: 1.2rem;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--brown-dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid var(--gold);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
  transition: var(--transition);
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.5);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--brown-dark);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray);
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-step::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- About Page ---------- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-image {
  height: 400px;
  background: linear-gradient(135deg, var(--brown-light), var(--brown-medium));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border: 3px solid var(--cream);
}

.timeline-content {
  width: 45%;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card .contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--amber);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--brown-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-container {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray);
}

/* ---------- Cart Sidebar ---------- */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.cart-sidebar.active {
  right: 0;
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--brown-dark);
  color: var(--white);
}

.cart-header h3 {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close {
  background: none;
  border: none;
  color: var(--cream-dark);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 5px;
}

.cart-close:hover {
  color: var(--gold);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 25px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.cart-empty .empty-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  display: block;
}

.cart-empty p {
  font-size: 1rem;
  margin-bottom: 5px;
}

.cart-empty small {
  font-size: 0.85rem;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brown-light), var(--brown-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-details .cart-item-price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-item-qty button:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.cart-item-qty span {
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 5px;
  transition: var(--transition);
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--gray-light);
  background: var(--cream);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-total .total-amount {
  color: var(--gold);
  font-size: 1.3rem;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}

.checkout-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.checkout-btn:disabled {
  background: var(--gray-light);
  color: var(--gray);
  cursor: not-allowed;
  transform: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brown-dark);
  color: var(--cream-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.footer-col h4 {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--cream-dark);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact li .contact-label {
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255, 248, 225, 0.5);
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--black);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--brown-dark);
  color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transform: translateX(120%);
  transition: transform 0.4s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast .toast-icon {
  font-size: 1.3rem;
}

/* ---------- Utility Patterns ---------- */
.bg-dots {
  background-image: var(--pattern-gold);
  background-size: 30px 30px;
}

.bg-dots-light {
  background-image: radial-gradient(rgba(212, 160, 23, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Navbar Mobile */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--brown-dark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: left 0.4s ease;
    z-index: 1500;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Grids Mobile */
  .products-grid,
  .usp-grid,
  .testimonials-grid,
  .benefits-grid,
  .serve-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* About Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    height: 250px;
  }

  /* Contact Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }

  /* Page Header Mobile */
  .page-header {
    padding: 120px 20px 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  /* Timeline Mobile */
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: 100%;
  }

  /* Cart Sidebar Mobile */
  .cart-sidebar {
    width: 100%;
    max-width: 100vw;
  }

  /* Pricing Table Mobile */
  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
  }

  /* WhatsApp Float Mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .whatsapp-float .tooltip {
    display: none;
  }

  /* CTA Banner Mobile */
  .cta-banner h2 {
    font-size: 1.6rem;
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--brown-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brown-medium);
}

/* ---------- Icon Sizing ---------- */
.icon-sm { width: 0.85em; height: 0.85em; }
.icon-lg { width: 1.5em; height: 1.5em; }

.icon-xl {
  width: 2em;
  height: 2em;
}

.icon-2xl {
  width: 2.5em;
  height: 2.5em;
}

.icon-3xl {
  width: 3em;
  height: 3em;
}

.icon-product {
  width: 5em;
  height: 5em;
}

.icon-star {
  width: 1.2em;
  height: 1.2em;
}

.icon-hero {
  width: 4em;
  height: 4em;
}

.usp-card .icon,
.benefit-card .icon,
.value-card .icon,
.serve-card .icon {
  width: 1em;
  height: 1em;
}

.product-image .icon {
  width: 5em;
  height: 5em;
}

.cart-item-image .icon {
  width: 2em;
  height: 2em;
}

.social-links .icon {
  font-size: 1.2rem;
}

.contact-card .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.footer-contact .icon {
  width: 1.1em;
  height: 1.1em;
}

.navbar-brand .icon {
  width: 2em;
  height: 2em;
}

.cart-btn .icon {
  width: 1.5em;
  height: 1.5em;
}

.btn .icon {
  font-size: 1.1rem;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
}

.stars .icon-star {
  color: var(--gold);
}

.whatsapp-float .icon {
  font-size: 2rem;
  color: white;
}

.cart-close .icon {
  font-size: 1.2rem;
}

.cart-item-remove .icon {
  width: 1em;
  height: 1em;
}

.qty-selector .icon {
  font-size: 0.9rem;
}

.cart-item-qty .icon {
  width: 0.8em;
  height: 0.8em;
}

.toast .icon {
  width: 1.2em;
  height: 1.2em;
  color: #4CAF50;
}

.product-badge .icon {
  width: 0.8em;
  height: 0.8em;
}

.hero-badge .icon {
  width: 1em;
  height: 1em;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--gold);
  color: var(--brown-dark);
}
