:root {
  --primary-color: #C89B7B;
  /* Rose gold / Copper accent from reference */
  --secondary-color: #333333;
  --text-main: #222222;
  --text-muted: #777777;
  --bg-light: #F9F9F9;
  --bg-white: #FFFFFF;
  --border-color: #EEEEEE;
  --sale-color: #E63946;
  --font-primary: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Utils */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn small {
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 2px;
}

.btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 0;
  font-size: 0.75rem;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right span {
  margin-left: 20px;
  cursor: pointer;
}

/* Main Header */
.main-header {
  padding: 25px 0;
  border-bottom: 1px solid var(--border-color);
}

.main-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 20px;
  width: 280px;
  background: #fdfdfd;
  justify-self: start;
}

.search-box input {
  border: none;
  outline: none;
  padding-left: 10px;
  font-size: 0.85rem;
  width: 100%;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  color: var(--primary-color);
  justify-self: center;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-size: 0.7rem;
  letter-spacing: 5px;
  color: var(--secondary-color);
  margin-top: 5px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

.icon-item {
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
  transition: color 0.3s;
}

.inquiry-btn-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.inquiry-btn-header .btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.inquiry-btn-header span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.inquiry-btn-header small {
  font-size: 0.65rem;
  opacity: 0.8;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

@keyframes inquiryPulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  }

  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
  }

  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  }
}

.inquiry-btn-header a:hover {
  background: #128C7E;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  color: #fff;
  animation-play-state: paused;
}

.inquiry-btn-header a i {
  font-size: 1.1rem;
}

.icon-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Navigation */
.nav-bar {
  border-bottom: 1px solid var(--border-color);
}

.nav-bar .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.browse-categories {
  background-color: var(--bg-light);
  padding: 15px 25px;
  border-right: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.browse-categories:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.browse-categories .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.browse-categories.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Categories Dropdown */
.categories-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 600px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  overflow: hidden;
}

.browse-categories.active .categories-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  display: grid;
  grid-template-columns: 1fr 200px;
  min-height: 350px;
}

.category-list {
  padding: 20px 0;
  border-right: 1px solid #f0f0f0;
}

.category-list-item a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 25px;
  color: var(--text-main);
  transition: all 0.25s ease;
  position: relative;
}

.category-list-item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.category-list-item a:hover {
  background: linear-gradient(90deg, rgba(200, 155, 123, 0.1) 0%, transparent 100%);
  padding-left: 30px;
}

.category-list-item a:hover::before {
  transform: scaleY(1);
}

.category-list-item a i {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #f8f4f0 0%, #efe8e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.category-list-item a:hover i {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.cat-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.9rem;
}

.cat-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s;
}

.category-list-item a:hover .cat-count {
  background: var(--primary-color);
  color: #fff;
}

/* Dropdown Promo Section */
.dropdown-promo {
  background: linear-gradient(180deg, #fcf9f5 0%, #f7f1e5 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dropdown-promo .promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--sale-color);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.dropdown-promo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dropdown-promo:hover img {
  transform: scale(1.03);
}

.promo-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.promo-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.promo-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s;
}

.promo-link:hover {
  color: var(--secondary-color);
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  margin-left: 30px;
}

.main-nav li a {
  padding: 15px 15px;
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
}

.main-nav li a:hover {
  color: var(--primary-color);
}

/* Navigation Dropdown Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.nav-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Shop Mega Menu */
.shop-mega-menu {
  width: 850px;
  left: 0;
  transform: translateX(0) translateY(10px);
}

.nav-dropdown:hover .shop-mega-menu {
  transform: translateX(0) translateY(0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 200px;
  gap: 0;
}

.mega-menu-column {
  padding: 25px 20px;
  border-right: 1px solid #f0f0f0;
}

.mega-menu-column:last-of-type {
  border-right: none;
}

.mega-menu-column h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-column h4 i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-column ul li a {
  display: block;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: #555;
  text-transform: none;
  transition: all 0.25s ease;
  position: relative;
}

.mega-menu-column ul li a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.25s ease;
}

.mega-menu-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 15px;
}

.mega-menu-column ul li a:hover::before {
  width: 8px;
}

/* Mega Menu Promo */
.mega-menu-promo {
  background: linear-gradient(180deg, #fcf9f5 0%, #f7f1e5 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mega-menu-promo img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mega-promo-content .promo-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--sale-color);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mega-promo-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.mega-promo-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.mega-promo-btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color) !important;
  text-transform: none !important;
  padding: 0 !important;
}

.mega-promo-btn:hover {
  letter-spacing: 0.5px;
}

/* Collections Simple Dropdown */
.collections-dropdown {
  width: 260px;
}

.simple-dropdown {
  padding: 15px 0;
  list-style: none;
  margin: 0;
}

.simple-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  font-size: 0.85rem;
  font-weight: 400;
  color: #555;
  text-transform: none;
  transition: all 0.25s ease;
}

.simple-dropdown li a i {
  width: 28px;
  height: 28px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.simple-dropdown li a:hover {
  background: linear-gradient(90deg, rgba(200, 155, 123, 0.08) 0%, transparent 100%);
  padding-left: 30px;
}

.simple-dropdown li a:hover i {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

/* Pendant Dropdown */
.pendant-dropdown {
  width: 240px;
}

/* Rings Dropdown */
.rings-dropdown {
  width: 230px;
}

/* Blog Dropdown */
.blog-dropdown {
  width: 250px;
}

/* Contact Dropdown */
.contact-dropdown {
  width: 260px;
}

.contact-dropdown .simple-dropdown li a[href^="tel:"] i,
.contact-dropdown .simple-dropdown li a[href*="whatsapp"] i {
  background: #25d366;
  color: #fff;
}

.contact-dropdown .simple-dropdown li a[href^="tel:"] i {
  background: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 500px;
  background-color: #f7f7f7;
  overflow: hidden;
}

.slide {
  display: flex;
  align-items: center;
  height: 100%;
}

.slide-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.slide-content span {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.slide-content h1 {
  font-size: 3rem;
  margin: 15px 0;
  font-weight: 300;
  color: var(--secondary-color);
}

.slide-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 0.9rem;
}

/* Popular Categories */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.popular-categories {
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  text-align: center;
}

.category-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background-color: #f9f9f9;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: var(--transition);
}

.category-item:hover img {
  transform: scale(1.1);
}

.category-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}

.category-item span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Promo Boxes */
.promo-section {
  padding: 40px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.promo-box {
  position: relative;
  background-color: #f3ece5;
  height: 250px;
  display: flex;
  align-items: center;
  padding: 40px;
  overflow: hidden;
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 200px;
}

.promo-content span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
}

.promo-content h3 {
  font-size: 1.4rem;
  margin: 10px 0;
  font-weight: 500;
}

.promo-content a {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 2px;
}

.promo-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  object-fit: cover;
}

/* Trending Products */
.trending-section {
  padding: 80px 0;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.tab {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.tab:hover {
  color: var(--primary-color);
}

.tab.active {
  color: #fff;
  background: var(--primary-color);
  border-bottom: none;
}

/* Tab Content System */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.tab-content.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* NEW Badge */
.new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 0.65rem;
  padding: 5px 12px;
  font-weight: 700;
  z-index: 10;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  letter-spacing: 1px;
}

/* Bestseller Badge */
.bestseller-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  font-size: 0.65rem;
  padding: 5px 12px;
  font-weight: 700;
  z-index: 10;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.product-grid:not(.tab-content) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  background: #fff;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-image-container {
  position: relative;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.1);
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--sale-color);
  color: white;
  font-size: 0.65rem;
  padding: 5px 12px;
  font-weight: 700;
  z-index: 10;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

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

.product-info h5 {
  font-size: 0.75rem;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.product-info h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 5px;
}

.product-price .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-right: 8px;
  font-weight: 400;
}

.inquiry-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  background: #fdfdfd;
  border: 1px solid #eee;
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border-radius: 4px;
}

.inquiry-link small {
  display: block;
  font-size: 0.65rem;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}

.inquiry-link:hover small {
  color: #fff;
}

.inquiry-link:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Secondary Promo */
.secondary-promo {
  background-color: #f7f7f7;
  margin: 40px 0;
}

.secondary-promo .container {
  display: flex;
  align-items: center;
}

.promo-model {
  width: 50%;
}

.promo-model img {
  width: 100%;
  display: block;
}

.promo-text-side {
  padding-left: 100px;
}

/* Heritage Section */
.heritage-section {
  padding: 100px 0;
  background: #fcf9f5;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.heritage-text span {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.heritage-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.heritage-text p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.heritage-stats {
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.stat-item p {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Features Bar */
.features-bar {
  padding: 60px 0;
  border-top: 1px solid #eee;
}

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

.feature-item {
  text-align: center;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-item h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-about .logo {
  color: #fff;
  margin-bottom: 5px;
}

.business-category {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 15px;
  display: block;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.footer-about p {
  color: #999;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

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

.footer-links ul li a {
  color: #999;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .secondary-promo .container {
    flex-direction: column;
    text-align: center;
  }

  .promo-model {
    width: 100%;
  }

  .promo-text-side {
    padding: 40px 20px;
  }
}

/* Category Notification Toast */
.category-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  color: #fff;
  padding: 18px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.category-notification i {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.category-notification .notification-content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.category-notification strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.category-notification span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Section Highlight Animation */
.section-highlight {
  animation: sectionPulse 2s ease-out;
}

@keyframes sectionPulse {
  0% {
    box-shadow: inset 0 0 0 3px var(--primary-color);
  }

  50% {
    box-shadow: inset 0 0 0 3px rgba(200, 155, 123, 0.5);
  }

  100% {
    box-shadow: inset 0 0 0 0 transparent;
  }
}

/* Mobile Dropdown Adjustments */
@media (max-width: 992px) {
  .categories-dropdown {
    width: 100%;
    max-width: 500px;
  }

  .dropdown-content {
    grid-template-columns: 1fr;
  }

  .dropdown-promo {
    display: none;
  }

  .category-list {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .browse-categories {
    padding: 12px 15px;
    font-size: 0.75rem;
  }

  .categories-dropdown {
    left: -10px;
    right: -10px;
    width: auto;
    border-radius: 0 0 8px 8px;
  }

  .category-list-item a {
    padding: 12px 20px;
  }

  .category-notification {
    left: 20px;
    right: 20px;
    transform: translateX(0) translateY(100px);
    border-radius: 12px;
  }

  .category-notification.show {
    transform: translateX(0) translateY(0);
  }
}

/* Modal System Styles - GLOBAL (works on all screen sizes) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #fff;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 8px;
  position: relative;
  overflow-y: auto;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  z-index: 10;
  transition: color 0.3s;
}

.close-modal-btn:hover {
  color: var(--primary-color);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.modal-left {
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-right: 1px solid #eee;
}

.modal-left img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-right {
  padding: 50px;
  display: flex;
  flex-direction: column;
}

#modalProductCat {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

#modalProductTitle {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.modal-price {
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
}

.modal-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.inquiry-form {
  margin-top: 10px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.inquiry-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #128c7e;
}

.btn-primary {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary:hover {
  opacity: 0.9;
}

.contact-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #777;
}

.contact-hint a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Responsive - Tablet and below */
@media (max-width: 768px) {
  .main-header .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .search-box {
    width: 100%;
  }

  .header-icons {
    justify-content: center;
  }

  .nav-bar .container {
    flex-direction: column;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-left {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .modal-right {
    padding: 30px 20px;
  }

  #modalProductTitle {
    font-size: 1.4rem;
  }

  .main-nav {
    margin-left: 0;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .main-nav li a {
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  /* Mobile dropdown navigation - accordion style */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
  }

  .nav-dropdown.mobile-active .nav-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    display: none;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    padding: 10px !important;
    left: 0 !important;
    transform: none !important;
  }

  .nav-dropdown.mobile-active .nav-dropdown-menu {
    display: block !important;
  }

  /* Simplify mega menu on mobile */
  .shop-mega-menu .mega-menu-inner {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .mega-menu-column {
    padding: 0 !important;
  }

  .mega-menu-column h4 {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .mega-menu-column ul li a {
    font-size: 0.75rem;
    padding: 6px 0;
  }

  .mega-promo-box {
    display: none !important;
  }

  /* Simple dropdowns on mobile */
  .collections-dropdown,
  .pendant-dropdown,
  .rings-dropdown,
  .blog-dropdown,
  .contact-dropdown {
    padding: 15px !important;
  }

  .collections-dropdown ul li a,
  .pendant-dropdown ul li a,
  .rings-dropdown ul li a,
  .blog-dropdown ul li a,
  .contact-dropdown ul li a {
    font-size: 0.8rem;
    padding: 8px 0;
    color: #2d2d2d !important;
    font-weight: 500;
  }

  .simple-dropdown li a {
    color: #2d2d2d !important;
    font-weight: 500;
  }

  .simple-dropdown li a i {
    color: var(--primary-color) !important;
  }


  .slide-content h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Product grid responsive */
  .tab-content.active,
  .product-grid:not(.tab-content) {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Tabs responsive */
  .tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab {
    padding: 8px 15px;
    font-size: 0.7rem;
  }

  /* Categories responsive */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero slider */
  .slide-content span {
    font-size: 0.8rem;
  }

  /* Browse categories dropdown - hide on mobile */
  .browse-categories-dropdown {
    display: none;
  }

  /* Shop mega menu - hide on mobile */
  .shop-mega-menu {
    display: none !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .top-bar-left,
  .top-bar-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-header {
    padding: 15px 0;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo span {
    font-size: 0.65rem;
  }

  .main-nav {
    gap: 3px;
  }

  .main-nav li a {
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  /* Single column grid for very small screens */
  .tab-content.active,
  .product-grid:not(.tab-content) {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  /* Hero section */
  .slide-content h1 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.85rem;
  }

  /* Product cards */
  .product-card {
    padding: 15px;
  }

  .prod-title {
    font-size: 0.9rem;
  }

  /* Section titles */
  .section-title h2 {
    font-size: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Categories dropdown button */
  .categories-btn {
    padding: 12px 20px;
    font-size: 0.75rem;
  }

  /* Promo boxes */
  .promo-box {
    padding: 20px;
  }

  .promo-title {
    font-size: 1.1rem;
  }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {

  .tab-content.active,
  .product-grid:not(.tab-content) {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Mega menu adjustments */
  .shop-mega-menu {
    width: 700px;
  }

  .mega-menu-inner {
    grid-template-columns: repeat(3, 1fr) 180px;
  }

  .mega-menu-column:nth-child(4) {
    display: none;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}