:root {
  --light-background: #f2f2f2;
  --light-text-color: #121212;
  --dark-background: #121212;
  --dark-text-color: #f2f2f2;
  --accent-color: #d4af37;
  --primary-color: #f2f2f2;
  --secondary-color: #121212;
  --hamburger-link-color: #272114;
  --background-color-hover: rgba(212, 175, 55, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--light-background);
  color: var(--light-text-color);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}
/* Dark theme */
body.dark-theme {
  background-color: var(--dark-background);
  color: var(--dark-text-color);
}

/* navbar dark theme */
body.dark-theme .home-container {
  background-color: var(--light-background);
  color: var(--accent-color);
}

/* nav links dark theme */
body.dark-theme nav ul li a {
  color: var(--light-text-color);
}
body.dark-theme nav ul li a:hover {
  color: var(--accent-color);
}

/* hamburger menu dark */
body.dark-theme nav ul {
  background-color: var(--light-background);
}
body.dark-theme .search-icon,
body.dark-theme .theme-toggle,
body.dark-theme .hamburger-menu {
  color: var(--secondary-color);
}
body.dark-theme .search-icon:hover,
body.dark-theme .theme-toggle:hover,
body.dark-theme .hamburger-menu:hover {
  color: var(--accent-color);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}
.home-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-background);
  color: var(--accent-color);
  padding: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-img {
  width: 50px;
  border-radius: 50%;
}

.logo-img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.logo-title {
  font-size: 24px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
}
nav ul {
  display: flex;
  /* gap: 20px; */
}

nav ul li {
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--dark-text-color);
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;

  background-color: var(--background-color-hover);
}
nav ul li a.active {
  color: var(--accent-color);
}
.nav-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.search-icon {
  padding-top: 5px;
}
.search-icon,
.theme-toggle,
.hamburger-menu {
  background: none;
  border: none;
  color: var(--primary-color);
}
.hamburger-menu {
  display: none;
}
.search-icon:hover,
.theme-toggle:hover,
.hamburger-menu:hover {
  color: var(--accent-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.icon-close {
  display: none;
}

.hamburger-menu.active .icon-menu {
  display: none;
}

.hamburger-menu.active .icon-close {
  display: block;
}
/* Default = Light theme */
.theme-toggle .light {
  display: none; /* hide sun */
}

.theme-toggle .dark {
  display: block; /* show moon */
}

/* When dark theme is active */
body.dark-theme .light {
  display: block; /* show sun */
}

body.dark-theme .dark {
  display: none; /* hide moon */
}
/*************************** HERO SECTION **********************8*/
.hero {
  position: relative;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #f2f2f2;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}
body.dark-theme .hero-content {
  color: #ffffff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* background: rgba(0, 0, 0, 0.75); */
}
body.dark-theme .hero-overlay {
  background: rgba(0, 0, 0, 0);
}
.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.hero-content.fade-in {
  opacity: 1;
}
.hero-tag {
  color: #d4af37;
  letter-spacing: 4px;
  /* font-size: 14px; */
  font-weight: 600;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.1;
  margin: 20px 0;
}

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

.btn-primary {
  padding: 12px 26px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 10px;
}

.btn-primary:hover {
  background: #b8962e;
}
body.dark-theme .btn-primary {
  background: #d4af37;
  color: #000;
}
.arrow-left,
.arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

.arrow-left:hover,
.arrow-right:hover {
  background: #d4af37;
  color: #000;
}
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #777;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #d4af37;
  width: 25px;
  border-radius: 10px;
}
/* ****************feature section ***************** */
.features {
  background: #0d0d0d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  flex-wrap: wrap;
  gap: 35px;
}

.feature-item {
  display: flex;
  align-items: self-start;
  justify-content: center;
  gap: 15px;
  flex: 1;
  /* min-width: 220px; */
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
}

/* This will style your SVG automatically */
.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #d4af37;
  stroke-width: 2;
}

.feature-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: #aaa;
}
/* ===== light THEME ===== */
body.dark-theme .features {
  background: #f5f5f5;
  color: #0d0d0d;
}

body.dark-theme .feature-text h4 {
  color: #0d0d0d;
}

body.dark-theme .feature-text p {
  color: #555;
}
/* ***************devider************* */
.section-divider {
  background: #111;
  padding: 30px 8%;
  text-align: center;
  color: #ccc;
}

body.dark-theme .section-divider {
  background: #f5f5f5;
}

.section-divider p {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin: 20px 0;
  color: #d4af37;
}

.divider-line {
  height: 1px;
  background: rgba(212, 175, 55, 0.4);
  width: 120px;
  margin: 0 auto;
}

/* ===============================
   CATEGORY SECTION
================================= */

.category-section {
  padding: 20px 8% 20px 8%;
  background: #111;
  text-align: center;
  transition: background 0.3s ease;
}

body.dark-theme .category-section {
  background: #f5f5f5;
}

/* Header */
.section-tag {
  color: #d4af37;
  letter-spacing: 4px;
  font-size: 14px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 15px 0;
  color: #fff;
}

body.dark-theme .section-header h2 {
  color: #111;
}

.underline {
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin: 0 auto 50px;
}

/* Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Dark overlay bottom */
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
  text-align: left;
}

.category-overlay h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.category-overlay a {
  color: #d4af37;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.category-overlay a:hover {
  letter-spacing: 2px;
}

/* Hover zoom effect */
.category-card:hover img {
  transform: scale(1.08);
}
/* =============================
   SECTION HIGHLIGHT DIVIDER
============================= */

.section-highlight {
  padding: 20px 8% 0 8%;
  text-align: center;
  background: #0f0f0f;
  transition: background 0.3s ease;
}

body.dark-theme .section-highlight {
  background: #f8f8f8;
}

.section-highlight p {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin: 20px 0;
  color: #d4af37;
}

body.dark-theme .section-highlight h3 {
  color: #d4af37;
}

.highlight-line {
  /* width: 80px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto; */
  height: 1px;
  background: rgba(212, 175, 55, 0.4);
  width: 120px;
  margin: 0 auto;
}

/* ===============================
   NEW ARRIVALS SECTION
================================= */

.new-arrivals {
  padding: 50px 8%;
  background: #111;
  text-align: center;
  transition: background 0.3s ease;
}

body.dark-theme .new-arrivals {
  background: #f5f5f5;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
}

body.dark-theme .product-card {
  background: #1a1a1a;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* Image */
.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  display: block;
}

/* Badges */
.badge-new {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d4af37;
  color: #000;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
}

.badge-discount {
  position: absolute;
  top: 45px;
  left: 15px;
  background: #e53935;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
}
/* Whats app enquire */
.whatsapp-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #25d366;
  color: #fff;
  padding: 8px 10px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.whatsapp-icon:hover {
  background: #1ebe5d;
}

/* Info */
.product-info {
  padding: 20px;
  text-align: left;
}

.category {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
}

.product-info h3 {
  font-size: 16px;
  margin: 8px 0;
}

.price {
  margin: 0 0;
}

.new-price {
  font-weight: 600;
  margin-right: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
}

/* Stock */
/* .stock {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  margin-top: auto;
}

.in-stock {
  background: #e0f2e9;
  color: #1b5e20;
}

.low-stock {
  background: #fff4e5;
  color: #e65100;
}
 */
/* View All */
.view-all {
  margin-top: 50px;
}

.btn-dark {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 10px;
}
body.dark-theme .btn-dark {
  background: #000;
  color: #fff;
}
body.dark-theme .btn-dark:hover {
  background: #d4af37;
  color: #000;
}

.btn-dark:hover {
  background: #d4af37;
  color: #000;
}
/* =============================
   LIMITED SALE SECTION
============================= */

.limited-sale {
  padding: 80px 8%;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #fafafa 0%, #f2f2f2 50%, #ededed 100%);
  position: relative;
  overflow: hidden;
  border: solid 1px #d4af37;
}

/* Subtle Gold Glow Effect */
.limited-sale::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}
.limited-sale::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
}

/* Tag */
.sale-tag {
  letter-spacing: 4px;
  font-size: 13px;
  color: #d4af37;
}

/* Heading */
.limited-sale h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin: 20px 0;
  color: #e0f2e9;
  font-weight: 500;
}

.limited-sale .highlight {
  color: #d4af37;
}

/* Description */
.limited-sale p {
  color: #bbb;
  font-size: 18px;
  margin-bottom: 35px;
}

/* Button */
.btn-sale {
  display: inline-block;
  padding: 15px 40px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-sale:hover {
  background: #fff;
  color: #000;
}
body:not(.dark-theme) .limited-sale {
  background: linear-gradient(135deg, #0d0d0d 0%, #111111 40%, #1a1a1a 100%);
  color: #111;
}
body.dark-theme .limited-sale h2 {
  color: #111;
}
/* =============================
   BEST SELLERS SECTION
============================= */

.best-sellers {
  padding: 80px 8%;
  background: #111;
  transition: background 0.3s ease;
}

body.dark-theme .best-sellers {
  background: #f5f5f5;
}

/* =============================
   SECTION HEADER
============================= */

.best-sellers .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.best-sellers .section-tag {
  letter-spacing: 4px;
  font-size: 13px;
  color: #d4af37;
}

.best-sellers h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 15px 0;
  color: #fff;
}

body.dark-theme .best-sellers h2 {
  color: #111;
}

.best-sellers .underline {
  width: 70px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto;
}

/* =============================
   PRODUCT GRID
============================= */
#bestSellerGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* =============================
   PRODUCT CARD
============================= */

.product-card {
  display: flex; /* IMPORTANT */
  flex-direction: column; /* IMPORTANT */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
}

body.dark-theme .product-card {
  background: #1a1a1a;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* Image */

.product-image {
  position: relative; /* FIXED (removed wrong "Image") */
}

.product-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Badges */

.badge-best {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  font-weight: 600;
}

body.dark-theme .badge-best {
  background: #d4af37;
  color: #000;
}

.badge-discount {
  position: absolute;
  top: 45px;
  left: 15px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
}

/* Info */

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

.product-info .category {
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
}

.product-info h3 {
  font-size: 16px;
  margin: 8px 0;
  color: #111;
  min-height: 48px; /* keeps titles aligned */
}

body.dark-theme .product-info h3 {
  color: #fff;
}

.price {
  margin-bottom: 10px;
}

.new-price {
  font-weight: 600;
  margin-right: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
}

/* Stock */

.stock {
  align-self: flex-start;
  margin-top: 0; /* THIS pushes it to bottom */
  /* display: inline-block; */
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
}

/* REMOVE absolute positioning completely */

.in-stock {
  background: #e0f2e9;
  color: #1b5e20;
}

.low-stock {
  background: #fff4e5;
  color: #e65100;
}
/* =============================
   WHY CHOOSE US SECTION
============================= */

.why-choose-us {
  padding: 0 8% 50px 8%;
  text-align: center;
  background: #111;
  transition: background 0.3s ease;
}

body.dark-theme .why-choose-us {
  background: #f5f5f5;
}

/* Section Header */

.section-header {
  margin-bottom: 70px;
}

.section-tag {
  letter-spacing: 4px;
  font-size: 13px;
  color: #d4af37;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 15px 0;
  color: #fff;
}

body.dark-theme .section-header h2 {
  color: #111;
}

.underline {
  width: 70px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto;
}

/* Grid */

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */

.promise-card {
  padding: 0 30px 30px 30px;
  transition: transform 0.3s ease;
}

.promise-card:hover {
  transform: translateY(-6px);
}

/* Icon wrapper (SVG Space) */

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* If you paste SVG later */
.icon-wrapper svg {
  width: 30px;
  height: 30px;
  /* fill: #d4af37; */
  stroke: #d4af37;
}

/* Text */

.promise-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

body.dark-theme .promise-card h3 {
  color: #111;
}

.promise-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

body.dark-theme .promise-card p {
  color: #bbb;
}
.about-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 80px 10% 0 10%;
  background: #0d0d0d;
}

.about-box {
  flex: 1;
}

.tag {
  color: #d4af37 !important;
  letter-spacing: 4px;
  /* font-size: 14px; */
  font-weight: 600;
}

.about-box h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #f2f2f2;
}

.about-box p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 15px;
}
body.dark-theme .about-container {
  background: #f5f5f5;
}
body.dark-theme .about-box h2 {
  color: #0f0f0f;
}
body.dark-theme .about-box p {
  color: #0d0d0d;
}
.why-choose {
  background: #0d0d0d;
  padding: 80px 10% 0 10%;
  text-align: center;
}

.section-tag {
  color: #d4af37;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  color: #f2f2f2;
  margin-bottom: 10px;
}

.underline {
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 10px auto 50px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.feature-card {
  border: 1px solid #222;
  padding: 30px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

/* ICON */
.about-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.about-icon svg {
  color: #d4af37;
}
/* TEXT */
.feature-card h3 {
  color: #f2f2f2;
  margin-bottom: 10px;
}

.feature-card p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* LIGHT THEME SUPPORT */
body.dark-theme .why-choose {
  background: #f5f5f5;
}

body.dark-theme .section-title {
  color: #111;
}

body.dark-theme .feature-card {
  border: 1px solid #ddd;
}

body.dark-theme .feature-card h3 {
  color: #111;
}

body.dark-theme .feature-card p {
  color: #444;
}
.team-section {
  background: #0d0d0d;
  padding: 80px 10%;
  text-align: center;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  background: #111;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

/* IMAGE */
.team-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TEXT */
.team-card h3 {
  color: #f2f2f2;
  margin-bottom: 5px;
}

.role {
  color: #d4af37;
  font-size: 14px;
  margin-bottom: 10px;
}

.desc {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* LIGHT THEME */
body.dark-theme .team-section {
  background: #f5f5f5;
}

body.dark-theme .team-card {
  background: #fff;
  border: 1px solid #ddd;
}

body.dark-theme .team-card h3 {
  color: #111;
}

body.dark-theme .desc {
  color: #444;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =============================
   FOOTER
============================= */

.main-footer {
  background: #111;
  color: #f5f5f5;
  padding-top: 70px;
  font-size: 15px;
  border-top: 2px solid #d4af37;
}
body.dark-theme .main-footer {
  background: #f5f5f5;
  color: #111;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
}
/* Container */

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding-bottom: 50px;
}

/* Headings */

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #d4af37;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 18px;
}

/* Paragraph */

.footer-col p {
  line-height: 1.7;
}

/* Links */

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #d4af37;
}

/* Contact */

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #aaa;
}

/* Icon Space */

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: #d4af37;
}

/* Text */

.contact-text {
  line-height: 1.6;
}

/* Highlight Time */

.highlight {
  display: inline;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 500;
}

.mt {
  margin-top: 15px;
}

/* Bottom Line */

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #777;
}
/* =============================
   SOCIAL ICONS
============================= */

.footer-social {
  margin: 20px 0 0 0;
  display: flex;
  /* justify-content: end; */

  gap: 15px;
}
.footer-social a {
  text-decoration: none;
}
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: #d4af37;
  stroke-width: 1.5px;
  transition: 0.3s ease;
}

/* Hover Effect */

.social-icon:hover {
  background: #d4af37;
  border-color: #d4af37;
  transform: translateY(-3px);
}

.social-icon:hover svg {
  fill: #000;
  stroke: #d4af37;
}

@media (max-width: 767px) {
  .hamburger-menu {
    display: block;
  }
  nav ul.active {
    display: flex;
  }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 73px;
    right: 0;
    background-color: var(--dark-background);
    padding: 10px 20px;
    width: 100%;
    border-radius: 5px;
    border-bottom: 2px solid var(--accent-color);
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: var(--dark-text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  /* hover effect */
  nav ul li a:hover {
    color: var(--accent-color);
    background-color: var(--background-color-hover);
  }
  nav ul li a.active {
    color: var(--accent-color);
    background-color: var(--background-color-hover);
  }
  .hero {
    height: 70vh;
    padding: 0 5%;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .arrow-left,
  .arrow-right {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .dots {
    bottom: 20px;
  }
  .features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card img {
    height: 350px;
  }

  .section-header h2 {
    font-size: 32px;
  }
  .category-card img {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .limited-sale h2 {
    font-size: 32px;
  }

  .limited-sale p {
    font-size: 14px;
  }
  #bestSellerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-image img {
    height: 100%;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 30px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left; /* IMPORTANT */
  }

  .footer-col {
    text-align: left; /* IMPORTANT */
  }

  .footer-social {
    justify-content: flex-start; /* social icons left */
  }

  .contact-info li {
    justify-content: flex-start;
  }
  .about-container {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .team-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* Tablet */
/* @media (min-width: 768px) {
  #bestSellerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  #productGrid {
    grid-template-columns: repeat(2, 1fr);
  }
} */
