/* ========================================
   MASTER FABRICS - REPLICA STYLESHEET
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Amiri:wght@400;700&family=Lato:wght@400;700&family=Jost:wght@400;500;600&display=swap');

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #212121;
  background-color: #ffffff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 8px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.announcement-bar a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.announcement-bar a:hover {
  opacity: 0.85;
}

/* ========== HEADER ========== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 5px;
}

.hamburger-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #212121;
  transition: 0.3s;
}

.header-search-icon {
  display: flex;
  align-items: center;
}

.header-search-icon svg {
  width: 20px;
  height: 20px;
  stroke: #212121;
  fill: none;
  stroke-width: 2;
}

.header-center {
  flex: 1;
  text-align: center;
}

.site-logo {
  display: inline-block;
}

.site-logo img {
  height: 55px;
  width: auto;
}

.logo-text {
  font-family: 'Amiri', serif;
  font-size: 28px;
  font-weight: 700;
  color: #212121;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #6e6e6e;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: flex-end;
}

.header-icon {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-icon svg {
  width: 22px;
  height: 22px;
  stroke: #212121;
  fill: none;
  stroke-width: 1.5;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #212121;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
  border-top: 1px solid #f2f2f2;
  background: #ffffff;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #212121;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #6e6e6e;
}

.main-nav ul li.active a {
  color: #000000;
}

.nav-sale a {
  color: #c00000 !important;
}

.nav-sale a:hover {
  color: #900000 !important;
}

/* Dropdown */
.main-nav ul li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.25s ease;
  z-index: 100;
}

.main-nav ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav ul li .dropdown a {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  border-bottom: 1px solid #f5f5f5;
}

.main-nav ul li .dropdown a:last-child {
  border-bottom: none;
}

/* ========== HERO BANNER / CAROUSEL ========== */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-content {
  text-align: center;
  color: #ffffff;
}

.hero-content .subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero-content h1 {
  font-family: 'Amiri', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-content .btn-hero {
  display: inline-block;
  padding: 14px 40px;
  background-color: #ffffff;
  color: #212121;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.hero-content .btn-hero:hover {
  background-color: #212121;
  color: #ffffff;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.carousel-dot.active {
  background: #ffffff;
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.3s;
}

.carousel-arrow:hover {
  background: #ffffff;
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #212121;
  fill: none;
  stroke-width: 2;
}

/* ========== MARQUEE ========== */
.marquee-section {
  background-color: #f2f2f2;
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Amiri', serif;
  font-size: 18px;
  color: #212121;
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-item .separator {
  margin: 0 15px;
  color: #c00000;
  font-size: 10px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTION HEADINGS ========== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6e6e6e;
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: 'Amiri', serif;
  font-size: 36px;
  font-weight: 400;
  color: #212121;
  line-height: 1.3;
}

.section-header .section-line {
  width: 50px;
  height: 1px;
  background-color: #212121;
  margin: 15px auto 0;
}

/* ========== CATEGORY COLLECTIONS ========== */
.collections-section {
  padding: 60px 0;
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px;
  transition: background 0.3s ease;
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%);
}

.collection-card-overlay h3 {
  font-family: 'Amiri', serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.collection-card-overlay .card-link {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
}

/* ========== FEATURED COLLECTIONS ROW ========== */
.featured-row {
  padding: 0 0 60px;
}

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

.featured-row-card {
  position: relative;
  overflow: hidden;
}

.featured-row-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-row-card:hover img {
  transform: scale(1.03);
}

.featured-row-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
}

.featured-row-overlay h3 {
  font-family: 'Amiri', serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 15px;
}

.featured-row-overlay .btn-featured {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.featured-row-overlay .btn-featured:hover {
  background: #ffffff;
  color: #212121;
}

/* ========== PRODUCT GRID ========== */
.products-section {
  padding: 60px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  transition: transform 0.3s ease;
}

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

.product-card-image {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

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

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #c00000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.sold-out {
  background-color: #212121;
}

.product-quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-card-info {
  padding: 15px 5px;
  text-align: center;
}

.product-card-vendor {
  font-size: 10px;
  font-weight: 500;
  color: #6e6e6e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.product-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-card-title a:hover {
  color: #6e6e6e;
}

.product-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-sale {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #c00000;
}

.price-original {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  text-decoration: line-through;
}

.price-regular {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #212121;
}

/* ========== VIEW ALL BUTTON ========== */
.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-view-all {
  display: inline-block;
  padding: 14px 44px;
  background-color: #212121;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: #000000;
}

/* ========== PROMOTIONAL BANNER ========== */
.promo-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.promo-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.promo-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.promo-banner-overlay .promo-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

.promo-banner-overlay h2 {
  font-family: 'Amiri', serif;
  font-size: 42px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.promo-banner-overlay .btn-promo {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.promo-banner-overlay .btn-promo:hover {
  background: #ffffff;
  color: #212121;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
  padding: 60px 0;
  background-color: #f2f2f2;
  text-align: center;
}

.newsletter-section h2 {
  font-family: 'Amiri', serif;
  font-size: 30px;
  font-weight: 400;
  color: #212121;
  margin-bottom: 8px;
}

.newsletter-section p {
  font-size: 13px;
  color: #6e6e6e;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #212121;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  background: #ffffff;
  color: #212121;
}

.newsletter-form input[type="email"]::placeholder {
  color: #999;
}

.newsletter-form button {
  padding: 14px 28px;
  background-color: #212121;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #212121;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #000000;
}

/* ========== FOOTER ========== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #e8e8e8;
  padding: 50px 0 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #212121;
  margin-bottom: 18px;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: #6e6e6e;
  transition: color 0.3s;
}

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

.footer-col p {
  font-size: 13px;
  color: #6e6e6e;
  line-height: 1.8;
}

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-col .contact-item svg {
  width: 16px;
  height: 16px;
  stroke: #6e6e6e;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: #212121;
  background: #212121;
}

.footer-social a:hover svg {
  stroke: #ffffff;
  fill: #ffffff;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: #6e6e6e;
  stroke: none;
}

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

.footer-bottom p {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-payments img {
  height: 24px;
  opacity: 0.6;
}

/* ========== PRODUCT DETAIL PAGE ========== */

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  font-size: 12px;
  color: #6e6e6e;
}

.breadcrumb a {
  color: #6e6e6e;
}

.breadcrumb a:hover {
  color: #212121;
}

.breadcrumb span {
  margin: 0 8px;
  color: #ccc;
}

/* Product Detail Layout */
.product-detail {
  padding: 20px 0 60px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Product Gallery */
.product-gallery {
  display: flex;
  gap: 12px;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  flex-shrink: 0;
}

.gallery-thumb {
  width: 80px;
  height: 95px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  opacity: 0.7;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: #212121;
  opacity: 1;
}

.gallery-main {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
}

.gallery-main img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.gallery-main:hover img {
  transform: scale(1.02);
}

/* Product Info */
.product-info {
  padding-top: 0;
}

.product-info .product-vendor {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6e6e6e;
  margin-bottom: 8px;
}

.product-info .product-title {
  font-family: 'Amiri', serif;
  font-size: 32px;
  font-weight: 400;
  color: #212121;
  line-height: 1.3;
  margin-bottom: 15px;
}

.product-info .product-price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.product-info .product-sale-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #c00000;
}

.product-info .product-compare-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.product-info .product-discount-badge {
  display: inline-block;
  background-color: #c00000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  letter-spacing: 0.5px;
}

.product-info .product-tax-info {
  font-size: 11px;
  color: #999;
  margin-bottom: 20px;
}

.product-info .product-short-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

/* Variant Selector */
.variant-group {
  margin-bottom: 20px;
}

.variant-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #212121;
  margin-bottom: 10px;
  display: block;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-option {
  padding: 10px 18px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
  text-align: center;
}

.variant-option:hover {
  border-color: #212121;
}

.variant-option.selected {
  border-color: #212121;
  background-color: #212121;
  color: #ffffff;
}

.color-swatch-wrap {
  display: flex;
  gap: 10px;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.color-swatch:hover,
.color-swatch.selected {
  border-color: #212121;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #212121;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quantity-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #212121;
  margin-right: 15px;
}

.quantity-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #212121;
  width: 130px;
  height: 44px;
}

.quantity-btn {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #212121;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}

.quantity-btn:hover {
  background-color: #f2f2f2;
}

.quantity-input {
  width: 50px;
  height: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  border-left: 1px solid #212121;
  border-right: 1px solid #212121;
}

/* Add to Cart */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.btn-add-cart {
  width: 100%;
  padding: 16px;
  background-color: #212121;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-add-cart:hover {
  background-color: #000000;
}

.btn-buy-now {
  width: 100%;
  padding: 16px;
  background-color: #5a31f4;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 4px;
}

.btn-buy-now:hover {
  background-color: #4a25d4;
}

/* Product Description Accordion */
.product-description-section {
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.product-accordion-item {
  border-bottom: 1px solid #eee;
}

.product-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
}

.product-accordion-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #212121;
}

.product-accordion-header .accordion-icon {
  font-size: 20px;
  color: #212121;
  transition: transform 0.3s;
  line-height: 1;
}

.product-accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.product-accordion-body {
  padding: 0 0 20px;
  display: none;
}

.product-accordion-item.open .product-accordion-body {
  display: block;
}

.product-accordion-body p {
  font-size: 13px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 10px;
}

.product-accordion-body ul {
  padding-left: 20px;
  list-style: disc;
}

.product-accordion-body ul li {
  font-size: 13px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 4px;
}

/* Product Share */
.product-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
}

.product-share span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #212121;
}

.product-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #6e6e6e;
  transition: color 0.3s;
}

.product-share a:hover {
  color: #212121;
}

.product-share a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ========== RELATED PRODUCTS ========== */
.related-products {
  padding: 60px 0;
  border-top: 1px solid #eee;
}

/* ========== BUNDLES SECTION ========== */
.bundles-section {
  padding: 60px 0;
  background-color: #ffffff;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #ffffff;
  z-index: 2001;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: #212121;
  cursor: pointer;
}

.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #212121;
  border-bottom: 1px solid #f2f2f2;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-slide img {
    height: 450px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .main-nav {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .header-top {
    padding: 12px 15px;
  }

  .site-logo img {
    height: 40px;
  }

  .logo-text {
    font-size: 22px;
  }

  .hero-slide img {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content .btn-hero {
    padding: 12px 30px;
  }

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

  .collection-card img {
    height: 300px;
  }

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

  .featured-row-card img {
    height: 350px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card-image img {
    height: 250px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .container, .container-wide {
    padding: 0 15px;
  }

  /* Product Detail Mobile */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-gallery {
    flex-direction: column-reverse;
  }

  .gallery-thumbnails {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }

  .gallery-thumb {
    width: 60px;
    height: 75px;
  }

  .product-info .product-title {
    font-size: 26px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .promo-banner img {
    height: 250px;
  }

  .promo-banner-overlay h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-card-image img {
    height: 200px;
  }

  .product-card-info {
    padding: 10px 2px;
  }

  .product-card-title {
    font-size: 11px;
  }

  .hero-slide img {
    height: 280px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }
}
