@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap");

:root {
  --primary: #ffffff;
  --bg-dark: #0a0a0a;
  --accent: #ff7b00;
  --brand: #c4a484;
  /* Soft sand/gold */
  --heading: #1a1a1a;
  --bodytext: #4a4a4a;
  --cta: #ff7b00;
  --sand: #f4f1ea;
  --bg-glass: rgba(255, 255, 255, 0.05);
  --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  --font-poppins: "Poppins", "Montserrat", sans-serif;
  --font-serif: "Playfair Display", serif;

  /* Animated Gradient Background */
  --gradient-bg: linear-gradient(-45deg, #1a1a1a, #2c2c2c, #4a4a4a, #1a1a1a);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

:root {
  /* Additional variables for product section */
  --fs-7: 0.875rem;
  --fs-8: 0.8125rem;
  --fs-9: 0.75rem;
  --fw-500: 500;
  --eerie-black: #1a1a1a;
  --white: #ffffff;
  --cultured: #f5f5f5;
  --sonic-silver: #757575;
  --candy-pink: #ff69b4;
  --ocean-green: #32cd32;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary);
  color: var(--bodytext);
  font-family: var(--font-poppins);
  overflow-x: hidden;
  line-height: 1.7;
}

.dark-theme {
  background-color: var(--bg-dark);
  color: var(--primary);
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
}

.section-padding {
  padding: 120px 0;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--sand);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

#navbar.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--heading);
  letter-spacing: -1px;
  font-family: 'Times New Roman', Times, serif;
  transition: var(--transition);
  white-space: nowrap;
}

.logo:hover {
  transform: scale(1.05);
  color: var(--accent);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.filter-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  /* Remove the dot */
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-list li {
  list-style: none;
}

.filter-btn {
  padding: 12px 28px;
  border: 1px solid var(--sand);
  background: white;
  color: var(--heading);
  border-radius: 50px;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.15);
}

.filter-btn.active {
  background: var(--heading);
  color: white;
  border-color: var(--heading);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-links a {
  text-decoration: none;
  color: var(--heading);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.nav-icons {
  display: flex;
  gap: 25px;
  font-size: 1.2rem;
  position: relative;
  z-index: 3001;
}

.nav-icons i:hover {
  color: var(--accent);
  transform: scale(1.1);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding-top: 200px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
  object-position: top center;
  transform: translateY(30px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.2;
  color: #000000;
  margin-top: clamp(40px, 10vh, 100px);
  margin-bottom: clamp(30px, 5vh, 60px);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* .hero-content p {
  font-size: 1.3rem;
  color: rgb(0, 0, 0);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  font-weight: 500;
  position: relative;
  z-index: 2;
} */

.btn-premium {
  padding: 20px 50px;
  background: var(--heading);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: var(--accent);
}

.btn-outline {
  padding: 20px 50px;
  border: 1px solid var(--heading);
  color: var(--heading);
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  display: inline-block;
  margin-left: 20px;
}

.btn-outline:hover {
  background: var(--heading);
  color: white;
}

/* Modern Button Styles */
.btn {
  background: var(--background, var(--eerie-black));
  color: var(--color, var(--white));
  font-weight: var(--fw-600);
  height: var(--height, 60px);
  padding-inline: 50px;
  border: 1px solid var(--border-color, var(--eerie-black));
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary:is(:hover, :focus) {
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--eerie-black);
}

.btn-secondary {
  --height: 50px;
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--white);
}

.btn-secondary:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
}

.btn-outline {
  --height: 50px;
  --background: var(--white);
  --color: var(--eerie-black);
  --border-color: var(--eerie-black);
  padding-inline: 40px;
}

.btn-outline:is(:hover, :focus) {
  --background: var(--eerie-black);
  --color: var(--white);
  --border-color: var(--eerie-black);
}

/* Category Grid */
.categories {
  background: white;
}

.category-card {
  position: relative;
  height: 400px;
  border-radius: 70px;
  overflow: hidden;
  transition: var(--transition);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.cat-num {
  color: white;
  font-size: 4rem;
  opacity: 0.4;
  font-style: italic;
}

.cat-title {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* Philosophy Section */
.philosophy {
  background: var(--sand);
}

.phil-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

@media (min-width: 1024px) {
  .phil-grid {
    flex-direction: row;
  }
}

.phil-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 100px;
}

/* Ingredients Section */
/* Ingredients/Ethos Section - Premium Redesign */
.ingredient-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ingredient-card:hover {
  background: white;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transform: translateY(-15px);
  border-color: var(--accent);
}

.ing-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 3px solid var(--sand);
  padding: 5px;
  transition: transform 0.5s ease;
}

.ingredient-card:hover .ing-img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent);
}

.ing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Impact Stats - Premium Redesign */
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-serif);
  background: linear-gradient(45deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: white;
  opacity: 0.8;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 40px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  background: var(--sand);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.testimonial-content {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--heading);
}

.testimonial-author p {
  font-size: 12px;
  color: var(--bodytext);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Product Cards */
/* Product Card Redesign - Premium Fashion Style */
.product-card {
  position: relative;
  background: white;
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.product-banner {
  position: relative;
  background: #f6f6f6;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: var(--transition);
}

.product-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover .product-banner img {
  transform: scale(1.1);
}

/* Badges */
.badge-container {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.product-badge {
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  border-radius: 4px;
}

.badge-sale {
  background: #f16b6b;
}

.badge-new {
  background: #5ec79a;
}

/* Hover Actions */
.product-actions {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.action-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: var(--transition);
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.action-btn:hover {
  background: var(--heading);
  color: white;
}

.add-cart-btn {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 0 20px;
  height: 40px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.add-cart-btn:hover {
  background: var(--accent);
}

.add-cart-btn i {
  font-size: 1rem;
}

/* Product Info */
.product-info {
  padding: 15px 10px;
  text-align: left;
}

.product-title {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading);
  margin-bottom: 4px;
  transition: var(--transition);
}

.product-card:hover .product-title {
  color: var(--accent);
}

.price-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.current-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--heading);
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
}

/* Blog Section Redesign */
.blog-card-minimal {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-minimal:hover {
  transform: translateY(-5px);
}

.blog-thumb-minimal {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  /* Slightly rounded corners */
  margin-bottom: 25px;
  position: relative;
}

.blog-thumb-minimal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card-minimal:hover .blog-thumb-minimal img {
  transform: scale(1.05);
  /* Subtle zoom */
}

.blog-meta-minimal {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.blog-category-minimal {
  color: var(--accent);
  font-weight: 600;
  position: relative;
}

.blog-category-minimal::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: #ccc;
}

.blog-category-minimal:last-child::after {
  display: none;
}

.blog-title-minimal {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.blog-card-minimal:hover .blog-title-minimal {
  color: var(--accent);
}

.blog-excerpt-minimal {
  font-size: 0.95rem;
  color: var(--bodytext);
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 20px;
  flex-grow: 1;
  /* Pushes content down if needed */
}

.product-card:hover .product-info h3 {
  color: var(--accent);
}

.product-info .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.product-info p {
  color: var(--bodytext);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.8;
}

.product-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover .product-buttons {
  opacity: 1;
  transform: translateY(0);
}

.product-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart {
  background: var(--accent);
  color: white;
}

.add-to-cart:hover {
  background: var(--heading);
  transform: translateY(-2px);
}

.buy-now {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.buy-now:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.add-to-cart,
.buy-now {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart {
  background: var(--sand);
  color: var(--heading);
}

.add-to-cart:hover {
  background: var(--accent);
  color: white;
}

.buy-now {
  background: var(--accent);
  color: white;
}

.buy-now:hover {
  background: var(--brand);
}

/* Before After */
.ba-img {
  border-radius: 120px;
  overflow: hidden;
  border: 15px solid white;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Footer Section Modern */
.footer {
  background: var(--bg-dark);
  color: var(--primary);
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-column h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #9ca3af;
  transition: var(--transition);
  font-weight: 500;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.info-col .footer-desc {
  color: #9ca3af;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.footer-logo {
  color: var(--primary);
  font-size: 2rem;
}

.contact-details p {
  color: #9ca3af;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 10px;
}

.contact-details i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

.footer-bottom-line {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  color: white;
  font-size: 1rem;
}

@media screen and (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Utility Classes */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-80 {
  gap: 20rem;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-end {
  align-items: flex-end;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.max-w-xs {
  max-width: 20rem;
}

.text-sm {
  font-size: 0.875rem;
}

.opacity-70 {
  opacity: 0.7;
}

.font-bold {
  font-weight: 700;
}

.block {
  display: block;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-\[6px\] {
  letter-spacing: 0.375rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-heading {
  color: var(--heading);
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.leading-tight {
  line-height: 1.25;
}

.text-lg {
  font-size: 1.125rem;
}

.opacity-80 {
  opacity: 0.8;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.rounded-full {
  border-radius: 9999px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-bodytext {
  color: var(--bodytext);
}

.mb-8 {
  margin-bottom: 2rem;
}

.w-full {
  width: 100%;
}

.mt-8 {
  margin-top: 2rem;
}

.text-white {
  color: white;
}

.font-semibold {
  font-weight: 600;
}

.flex {
  display: flex;
}

.gap-2 {
  gap: 0.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.border-t {
  border-top: 1px solid;
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.opacity-40 {
  opacity: 0.4;
}

.tracking-\[4px\] {
  letter-spacing: 1px;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.text-accent {
  color: var(--accent);
}

.text-brand {
  color: var(--brand);
}

.italic {
  font-style: italic;
}

.text-black-700 {
  color: #333333;
}

.font-normal {
  font-weight: 400;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Responsive Grids */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gap-4 {
  gap: 1rem;
}

.gap-x-10 {
  column-gap: 2.5rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-24 {
  gap: 6rem;
}

.gap-32 {
  gap: 8rem;
}

.gap-x-8 {
  column-gap: 2rem;
}

.gap-x-10 {
  column-gap: 2.5rem;
}

.gap-x-12 {
  column-gap: 3rem;
}

.gap-x-16 {
  column-gap: 4rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

.gap-y-16 {
  row-gap: 4rem;
}

.gap-y-20 {
  row-gap: 5rem;
}

.gap-y-32 {
  row-gap: 8rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.w-full {
  width: 100%;
}

.w-fit {
  width: fit-content;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-32 {
  margin-top: 8rem;
}

.ml-4 {
  margin-left: 1rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.text-transparent {
  color: transparent;
}

.backdrop-blur-2xl {
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.backdrop-blur-xl {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-16 {
  padding: 4rem;
}

.p-20 {
  padding: 5rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

.space-y-16>*+* {
  margin-top: 4rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-heading {
  color: var(--heading);
}

.text-bodytext {
  color: var(--bodytext);
}

.text-accent {
  color: var(--accent);
}

.text-brand {
  color: var(--brand);
}

.text-white {
  color: white;
}

.bg-white {
  background-color: white;
}

.bg-sand {
  background-color: var(--sand);
}

.bg-heading {
  background-color: var(--heading);
}

.bg-primary {
  background-color: var(--primary);
}

.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-sand {
  border-color: var(--sand);
}

.border-accent {
  border-color: var(--accent);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-40 {
  border-radius: 40px;
}

.rounded-60 {
  border-radius: 60px;
}

.rounded-80 {
  border-radius: 80px;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.cursor-pointer {
  cursor: pointer;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.aspect-\[16\/11\] {
  aspect-ratio: 16 / 11;
}

.aspect-\[4\/5\] {
  aspect-ratio: 4 / 5;
}

.aspect-\[3\/4\] {
  aspect-ratio: 3 / 4;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

/* Enhanced About Us Section */
.about-hero-badge {
  background: linear-gradient(135deg,
      rgba(255, 123, 0, 0.1),
      rgba(196, 164, 132, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 123, 0, 0.2);
}

.about-quote-section {
  position: relative;
}

.about-quote-section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  border-radius: 2px;
}

.values-card-icon {
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.3);
}

.stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.stats-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/*-----------------------------------*\
 * #PRODUCT
\*-----------------------------------*/

.h2 {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--heading);
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 25px;
  margin-bottom: 60px;
  padding: 20px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn {
  position: relative;
  color: var(--bodytext);
  font-size: var(--fs-7);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(196, 164, 132, 0.3);
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-poppins);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: white;
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.4);
  transform: translateY(-3px);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  list-style: none;
  padding: 0;
  justify-items: center;
}

@media (min-width: 480px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (min-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (min-width: 1024px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (min-width: 1280px) {
  .product-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1440px) {
  .product-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Styles replaced by redesigned product-card above */

.footer {
  background: var(--bg-dark);
  color: var(--primary);
  padding: 100px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-column h3 {
  color: var(--accent);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--accent);
  padding-left: 10px;
}

/* =========================================
   #RESPONSIVE DESIGN (All Screen Sizes)
   ========================================= */

/* Desktop Screens (Large & 2K/4K) */
@media (min-width: 1441px) {
  .container {
    max-width: 1600px;
  }
}

@media (min-width: 1921px) {
  .container {
    max-width: 1800px;
  }

  body {
    font-size: 1.1rem;
  }
}

/* Laptop Screens */
@media (max-width: 1366px) {
  .container {
    padding: 0 40px;
  }

  .nav-links {
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 80px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    /* Initially hidden */
    z-index: 2500;
  }

  .mobile-close-btn {
    display: block !important;
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 1.8rem;
    color: var(--heading);
    cursor: pointer;
    list-style: none;
  }

  .nav-links.active {
    display: flex !important;
    z-index: 2000;
  }

  .menu-toggle {
    display: block !important;
    position: relative;
    z-index: 3000;
    /* Ensure it's above the nav overlay */
    color: var(--heading);
  }

  .phil-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phil-img img {
    height: auto;
    border-radius: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Tablet Screens */
@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
    height: auto;
    min-height: 80vh;
  }

  .h2 {
    font-size: 2rem;
  }

  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    height: 350px;
    border-radius: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile Screens */
@media (max-width: 480px) {
  .container {
    padding: 0 25px;
  }

  .btn-premium,
  .btn-outline {
    padding: 8px 15px;
    font-size: 0.75rem;
    width: auto;
    min-width: 120px;
    max-width: 180px;
    margin: 5px auto;
    display: inline-flex;
    justify-content: center;
    letter-spacing: 1px;
    height: auto;
    border-radius: 50px;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-icons {
    gap: 15px;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }

  .btn-premium,
  .btn-outline {
    width: 100%;
    margin: 5px 0;
  }

  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 300px;
    border-radius: 30px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .filter-list {
    gap: 10px;
    margin-bottom: 30px;
  }

  .testimonial-content {
    font-size: 1.1rem;
  }
}

/* Special checks for small mobiles (360px / 320px) */
@media (max-width: 375px) {
  .logo {
    font-size: 1.3rem;
  }

  .h2 {
    font-size: 1.7rem;
  }

  .product-card {
    max-width: 100%;
  }
}