/* ============================================
   NI Design - Best Athletic Costumes
   Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary-gold: #C8B174;
  --primary-gold-light: #d4b565;
  --primary-gold-dark: #a8872e;
  --dark: #1a1a1a;
  --dark-bg: #111111;
  --dark-secondary: #222222;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --light-bg: #f8f8f8;
  --border-color: #e5e5e5;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 30px;
  --font-heading: "Syne";
  --font-body: "Poppins";
     --gold: #C5A047;
     
      --text: #333;
      --gray: #888;
      --border: #e5e5e5;
      --light: #f7f7f7;
      --black: #1E1E1E;
}

/* ---------- Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

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

a:hover {
  color: var(--primary-gold);
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 40px 0 25px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  margin-top: 10px;
}

.section-title-center {
  text-align: center;
}

.section-title-center::after {
  margin-left: auto;
  margin-right: auto;
}

.gold-text {
  color: var(--primary-gold);
}

.dark-bg {
  background-color: var(--dark-bg);
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: var(--primary-gold);
  color: var(--white);
  border: 2px solid var(--primary-gold);
  padding: 12px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-gold:hover {
  background: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 71, 0.4);
}

.btn-gold-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  padding: 12px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-gold-outline:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 71, 0.4);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  padding: 12px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-dark:hover {
  background: var(--dark-secondary);
  border-color: var(--dark-secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 8px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
  color: var(--white);
  font-size: 12px;
}

.top-bar a:hover {
  color: var(--primary-gold);
}

.top-bar .social-icons a {
  margin-right: 12px;
  font-size: 14px;
  transition: var(--transition);
}

.top-bar .social-icons a:hover {
  color: var(--primary-gold);
  transform: scale(1.1);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.top-bar-right .dropdown-toggle {
  color: var(--white);
  font-size: 12px;
  background: none;
  border: none;
}

.top-bar-center {
  text-align: center;
}

/* ---------- Navbar ---------- */
.main-navbar {
  background-color: var(--black);
  padding: 15px 0;
  transition: var(--transition);
  z-index: 1000;
  color:#fff ;
  border-bottom: 1px solid var(--border-color);
}

.main-navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-sm);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-brand img {
  height: 50px;
  transition: var(--transition);
}

.navbar-brand .brand-text {
  font-family: 'Great Vibes', cursive;
  font-size: 24px;
  color: var(--primary-gold);
  margin-left: 8px;
}

.main-navbar .nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color:#fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 8px 18px !important;
  transition: var(--transition);
  position: relative;
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  width: 60%;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary-gold);
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-icons a {
  color: #ffffff;
  font-size: 18px;
  position: relative;
  transition: var(--transition);
}

.navbar-icons a:hover {
  color: var(--primary-gold);
  transform: scale(1.1);
}

.navbar-icons .badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-gold);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.navbar-icons .my-account-link {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ---------- Page Banner ---------- */
.page-banner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.page-banner .breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-banner .breadcrumb-item.active {
  color: var(--primary-gold);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  content: '|';
  color: rgba(255,255,255,0.5);
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 500px;
}

.hero-content .subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary-gold);
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-controls button:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
}

/* ---------- Product Card ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  background: var(--light-bg);
  aspect-ratio: 3/4;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.product-card .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  transform: translateY(100%);
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

.product-overlay a,
.product-overlay span {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.product-overlay a:hover,
.product-overlay span:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.product-card .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card .product-info {
  padding: 15px;
}

.product-card .product-name {
 font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color:#808386;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .product-name a:hover {
  color: var(--primary-gold);
}

.product-card .product-price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.product-card .product-price .old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
  font-size: 13px;
  margin-left: 8px;
}

.product-card .product-rating {
  color: var(--primary-gold);
  font-size: 12px;
  margin-bottom: 5px;
}

/* ---------- Category Scroll ---------- */
.category-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.category-item:hover {
  transform: translateY(-3px);
}

.category-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: var(--transition);
}

.category-item:hover img {
  border-color: var(--primary-gold);
}

.category-item span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Banner Section ---------- */
.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.promo-banner:hover img {
  transform: scale(1.05);
}

.promo-banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 80%;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
  transition: var(--transition);
}

.promo-banner:hover::before {
  background: rgba(0,0,0,0.5);
}

/* ---------- Section Header with Arrows ---------- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}

.section-arrows {
  display: flex;
  gap: 8px;
}

.section-arrows button {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border-color);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.section-arrows button:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
}

/* ---------- Instagram Section ---------- */
.instagram-section {
  padding: 60px 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.instagram-item::before {
  content: '\f16d';
  font-family: 'Font Awesome 6 Brands';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--white);
  font-size: 24px;
  z-index: 2;
  transition: var(--transition);
}

.instagram-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(197, 160, 71, 0.5);
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.instagram-item:hover::after {
  opacity: 1;
}

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

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--dark-bg);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-logo .brand-name {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  color: var(--primary-gold);
  display: block;
}

.footer-logo .brand-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.footer-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

.footer-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links li a i {
  font-size: 11px;
  color: var(--primary-gold);
}

.footer-social a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--primary-gold);
}

.footer-social a i {
  color: var(--primary-gold);
  width: 20px;
}

.footer-subscribe p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-subscribe .input-group {
  max-width: 300px;
}

.footer-subscribe input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 13px;
  padding: 10px 15px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.footer-subscribe input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-subscribe input:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--primary-gold);
  box-shadow: none;
  color: var(--white);
}

.footer-subscribe .btn-subscribe {
  background: var(--primary-gold);
  color: var(--white);
  border: 1px solid var(--primary-gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  transition: var(--transition);
}

.footer-subscribe .btn-subscribe:hover {
  background: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
}

.footer-payment {
  margin-top: 15px;
}

.footer-payment img {
  height: 25px;
  margin-right: 5px;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-payment img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Store / Shop Page ---------- */
.filter-sidebar {
  padding-right: 30px;
}

.filter-sidebar h4 {

  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-gold);
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group .form-check {
  margin-bottom: 8px;
}

.filter-group .form-check-input:checked {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.filter-group .form-check-label {
  font-size: 1rem;
  color: var(--text-medium);
  cursor: pointer;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-tag {
  padding: 6px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
}

.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.sort-bar select {
  border: 1px solid var(--border-color);
  padding: 6px 20px;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
}

.pagination-custom .page-link {
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  margin: 0 3px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  transition: var(--transition);
}

.pagination-custom .page-link:hover,
.pagination-custom .page-item.active .page-link {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
}

/* Price range slider */
.price-range {
  padding: 0 5px;
}

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--primary-gold);
}

/* Color filter swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.color-swatch:hover,
.color-swatch.active {
  border-color: var(--primary-gold);
  transform: scale(1.15);
}

/* ---------- Product Details Page ---------- */
.product-gallery {
  display: flex;
  gap: 15px;
}

.product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
}

.product-gallery-thumbs img {
  width: 80px;
  height: 90px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--primary-gold);
}

.product-gallery-main {
  flex: 1;
}

.product-gallery-main img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.product-detail-info h1 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-detail-info .rating {
  color: var(--primary-gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.product-detail-info .rating span {
  color: var(--text-light);
  font-size: 13px;
  margin-left: 8px;
}

.product-detail-info .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.product-detail-info .description {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.quantity-selector button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--light-bg);
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-selector button:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.quantity-selector input {
  width: 50px;
  height: 36px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.quantity-selector input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

.product-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.product-meta p {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.product-meta p strong {
  color: var(--text-dark);
}

.product-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.product-share span {
  font-size: 13px;
  font-weight: 500;
}

.product-share a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 14px;
  transition: var(--transition);
}

.product-share a:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.color-options {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.color-option {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.color-option:hover,
.color-option.active {
  border-color: var(--text-dark);
}
.ni-hero-inner{
  height: 100%;
  max-height: 620px;
}
/* Product Tabs */
.product-tabs {
  margin-top: 60px;
}

.product-tabs .nav-tabs {
  border-bottom: 1px solid #e5e5e5;
  justify-content: flex-start;
  gap: 0;
}

.product-tabs .nav-tabs .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a1a1a;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 30px;
  margin-bottom: -1px;
  transition: var(--transition);
  background: transparent;
}

.product-tabs .nav-tabs .nav-link:hover {
  color: var(--primary-gold);
}

.product-tabs .nav-tabs .nav-link.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
  background: transparent;
}

/* .product-tabs .tab-content {
  padding: 25px 0;
} */

.additional-info-table {
  width: 100%;
}

.additional-info-table tr td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.additional-info-table tr td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 200px;
}

/* Reviews */
.reviews-section {
  padding: 30px 0 10px;
}

.rating-summary {
display: flex;
      gap: 40px;
      padding: 30px ;
      border-bottom: 1px solid #e5e5e5;
      margin-bottom: 10px;
}

.rating-summary-left {
  flex-shrink: 0;
  min-width: 130px;
}

.rating-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.avg-rating-value {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.avg-rating-value i {
  color: var(--primary-gold);
  font-size: 16px;
}

.avg-rating-value span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.rating-summary-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-bar {
  flex: 1;
  height: 10px;
  background: #e8e8e8;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--primary-gold);
}

.rating-bar-label {
  font-size: 12px;
  color: #999;
  min-width: 42px;
  text-align: right;
}

.review-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border-color);
}

.review-item .review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-stars {
  color: var(--primary-gold);
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  gap: 2px;
}

.review-author-line {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.review-author-line strong {
  color: var(--text-dark);
  font-weight: 600;
}

.review-item .review-date {
  font-size: 13px;
  color: #666;
}

.review-item .review-text {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.review-view-more {
  padding: 30px 0 10px;
}

.btn-view-more {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a1a1a;
  background: transparent;
  border: 2px solid #1a1a1a;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-view-more:hover {
  background: #1a1a1a;
  color: #fff;
}

.star-rating {
  display: flex;
  gap: 5px;
  font-size: 24px;
  color: var(--border-color);
  cursor: pointer;
}

.star-rating i.active,
.star-rating i:hover,
.star-rating i:hover ~ i {
  color: var(--primary-gold);
}

.star-rating-interactive {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  font-size: 28px;
}

.star-rating-interactive i {
  color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.star-rating-interactive i:hover,
.star-rating-interactive i:hover ~ i,
.star-rating-interactive i.active,
.star-rating-interactive i.active ~ i {
  color: var(--primary-gold);
}

/* ---------- Shopping Cart Modal ---------- */
.cart-modal .modal-content {
  border-radius: var(--radius-md);
  border: none;
}

.cart-modal .modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 25px;
}

.cart-modal .modal-header h5 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  transition: var(--transition);
}

.cart-item:hover {
  box-shadow: var(--shadow-sm);
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center 10%;
  border-radius: var(--radius-sm);
  
}

.cart-item .cart-item-info {
  flex: 1;
}

.cart-item .cart-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
}

.cart-item .cart-item-price {
  font-size: 14px;
  color: var(--text-medium);
}

.cart-item .cart-item-remove {
  color: var(--text-light);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  border: unset;
  background-color: unset;
}

.cart-item .cart-item-remove:hover {
  color: #e74c3c;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 16px;
}

.cart-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
}

/* ---------- Auth Pages (Login/Signup/Verification) ---------- */
.auth-section {
  padding: 60px 0;
}

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

.auth-tabs a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.auth-tabs a.active {
  color: var(--primary-gold);
}

.auth-tabs a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gold);
}

.auth-form {
  max-width: 400px;
  margin: 0 auto;
}

.auth-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.auth-form .form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 71, 0.15);
}

.auth-form .password-toggle {
  position: absolute;
}

.auth-form .password-toggle .toggle-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  margin-top: -7px;
}

.auth-form .forgot-link {
  text-align: right;
  display: block;
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 20px;
  margin-top: -5px;
}

.auth-form .forgot-link:hover {
  color: var(--primary-gold);
}

.auth-form .auth-link {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  color: var(--text-medium);
}

.auth-form .auth-link a {
  color: var(--primary-gold);
  font-weight: 600;
  text-decoration: underline;
}

.phone-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.phone-input-group .country-code {
  width: 80px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  font-size: 14px;
  text-align: center;
}

.phone-input-group .form-control {
  flex: 1;
  margin-bottom: 0;
}

/* OTP Verification */
.otp-section {
  text-align: center;
  padding: 60px 0;
}

.otp-section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.otp-section p {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 25px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.otp-inputs input {
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.otp-inputs input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 71, 0.15);
  outline: none;
}

.otp-resend {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 5px;
}

.otp-timer {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 25px;
}

/* ---------- Checkout Page ---------- */
.checkout-section {
  padding: 40px 0 60px;
}

.checkout-section h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.checkout-section h2 span {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-medium);
  margin-right: 5px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.order-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.order-item .item-name {
  flex: 1;
  font-size: 14px;
}

.order-item .item-price {
  font-weight: 600;
  font-size: 14px;
}

.coupon-input {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.coupon-input input {
  flex: 1;
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.coupon-input input:focus {
  border-color: var(--primary-gold);
  outline: none;
}

.cart-totals {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

.cart-totals .total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.cart-totals .total-row.grand-total {
  font-weight: 700;
  font-size: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.billing-form .form-control,
.billing-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 14px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.billing-form .form-control:focus,
.billing-form .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 71, 0.15);
}

.payment-section h2 {
  margin-top: 0;
}

.payment-method {
  margin-bottom: 15px;
}

.payment-method .form-check {
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: var(--transition);
}

.payment-method .form-check:hover {
  border-color: var(--primary-gold);
}

.payment-method .form-check-input:checked {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.payment-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding-left: 25px;
}

.payment-icons img {
  height: 30px;
  opacity: 0.8;
}

.payment-card-form {
  padding: 15px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  margin-top: 10px;
}

/* ---------- Confirmation Page ---------- */
.confirmation-section {
  padding: 50px 0;
}

.confirmation-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.confirmation-section p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

.order-details-table {
  margin-top: 25px;
}

.order-details-table .detail-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.order-details-table .detail-row .label {
  width: 150px;
  color: var(--text-medium);
}

.order-details-table .detail-row .separator {
  margin: 0 15px;
  color: var(--text-light);
}

.order-details-table .detail-row .value {
  font-weight: 500;
}

/* ---------- Account Page ---------- */
.account-section {
  padding: 40px 0 60px;
}

.account-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 0;
  border: 1px solid var(--border-color);
}

.account-sidebar .nav-link {
  padding: 12px 25px;
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.account-sidebar .nav-link:hover {
  color: var(--primary-gold);
  background: rgba(197, 160, 71, 0.05);
}

.account-sidebar .nav-link.active {
  color: var(--primary-gold);
  border-left-color: var(--primary-gold);
  background: rgba(197, 160, 71, 0.08);
  font-weight: 600;
}

.account-content {
  padding-left: 30px;
}

.account-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.account-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 20px;
}

.account-form .form-label {
 font-size: 0.9rem;
  font-weight: 500;
  color:#808386;
  margin-bottom: 7px;
}

.account-form .form-control,
.account-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 12px 15px;
  font-size: 14px;
  transition: var(--transition);
}

.account-form .form-control:focus,
.account-form .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 71, 0.15);
}

/* Order Card */
.order-card {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 30px 0;
  margin-bottom: 0;
  transition: var(--transition);
}
.order-card:last-child {
  border-bottom: none;
}

/* Logo image block */
.order-logo-box {
 width: 150px;
  height: 150px;
  min-width: 120px;
  background: #1a1a1a;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 2px;

}
.order-logo-box svg { width: 42px; height: 42px; }
.order-logo-box .logo-name {
  font-family: 'Great Vibes', cursive;
  color: #C5A047;
  font-size: 14px;
  line-height: 1;
}
.order-logo-box .logo-sub {
  color: rgba(197,160,71,0.7);
  font-size: 7px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
}

/* Order info table */
.order-info-table {
  width: 100%;
  border-collapse: collapse;
}
.order-info-table td {
  padding: 5px 0;
  font-size: 14px;
  color: #555;
  vertical-align: top;
  line-height: 1.5;
}
.order-info-table .oi-label {
  width: 110px;
  color: #222;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-body);
}
.order-info-table .oi-sep {
  padding: 5px 10px;
  color: #222;
  font-weight: 500;
}

/* Amount & actions (right column) */
.order-card .order-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.order-card .order-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.order-card .order-actions .btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 0;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

/* Filled gold button (Cancel / Give Rating) */
.btn-cancel,
.btn-rating {
  background: var(--primary-gold);
  color: #fff;
  border: 1px solid var(--primary-gold);
}
.btn-cancel:hover,
.btn-rating:hover {
  background: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
  color: #fff;
}

/* Outlined button (Track Order / Repeat order) */
.btn-track,
.btn-repeat {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid #ccc;
}
.btn-track:hover,
.btn-repeat:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #fff;
}

/* Keep old aliases so other references don't break */
.btn-feedback { background: var(--primary-gold); color: #fff; border: 1px solid var(--primary-gold); }
.btn-feedback:hover { background: var(--primary-gold-dark); border-color: var(--primary-gold-dark); color: #fff; }
.btn-reorder { background: transparent; color: var(--text-dark); border: 1px solid #ccc; }
.btn-reorder:hover { background: var(--primary-gold); border-color: var(--primary-gold); color: #fff; }

/* Order Details */
.order-detail-section h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 32px;
  margin-bottom: 18px;
}

.order-product-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
}

.order-product-row img {
  width: 85px;
  height: 95px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Product name inside order detail */
.od-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin-bottom: 5px;
}

/* Quantity row */
.od-qty {
  font-size: 13px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 6px;
}
.od-qty .qty-x {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Price on the right */
.od-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  margin-left: auto;
}

.shipping-info p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 3px;
}

.payment-info-detail .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

/* Track Order Progress */
.track-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 30px 0;
  padding: 0 10px;
}

.track-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--border-color);
}

.track-progress::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  width: 30%;
  height: 3px;
  background: var(--primary-gold);
  transition: var(--transition-slow);
}

.track-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.track-step .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 16px;
  color: var(--white);
  transition: var(--transition);
}

.track-step.completed .step-icon,
.track-step.active .step-icon {
  background: var(--primary-gold);
}

.track-step .step-label {
  font-size: 12px;
  color: var(--text-medium);
  font-weight: 500;
}

.track-step .step-date {
  font-size: 11px;
  color: var(--text-light);
}

/* Track My Order Form */
.track-order-form {
  max-width: 500px;
}

.track-order-form .form-check-inline {
  margin-right: 20px;
}

.track-order-form .form-check-input:checked {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

/* ---------- About Us Page ---------- */
.about-section {
  padding: 60px 0;
}

.about-block {
  padding: 40px 0;
}

.about-block h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.about-block h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  margin-top: 10px;
}

.about-block p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
}

.about-block img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 350px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about-block img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ---------- Contact Us Page ---------- */
.contact-section {
  padding: 60px 0;
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 550px;
  margin: 0 auto;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 71, 0.15);
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-info-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  padding-top: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-2px);
}

.contact-info-item i {
  font-size: 20px;
  color: var(--primary-gold);
}

.contact-info-item .info-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item .info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-gold);
}

/* ---------- Modals ---------- */
.modal-custom .modal-content {
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-lg);
}

.modal-custom .modal-header {
  border-bottom: none;
  padding: 25px 30px 10px;
}

.modal-custom .modal-header h5 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-custom .modal-body {
  padding: 15px 30px 30px;
}

/* Feedback Modal */
.feedback-stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 32px;
  color: var(--border-color);
  margin-bottom: 25px;
  cursor: pointer;
}

.feedback-stars i.active {
  color: var(--primary-gold);
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease forwards;
}

/* Scroll Reveal (JS adds .revealed) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---------- For Women/Men Section ---------- */
.gender-section {
  padding: 40px 0;
}

/* ---------- Shop by Sports ---------- */
.sports-section {
  padding: 50px 0;
  background: var(--light-bg);
}

.sport-card {
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.sport-card:hover {
  transform: translateY(-5px);
}

.sport-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: var(--transition);
}

.sport-card:hover img {
  box-shadow: var(--shadow-md);
}

.sport-card span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Sale Clothing Banner ---------- */
.sale-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 300px;
}

.sale-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sale-banner .sale-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: var(--white);
}

.sale-banner .sale-content h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* ---------- #NIDESIGNFEED ---------- */
.feed-section {
  padding: 50px 0;
}

.feed-section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-slide {
    height: 500px;
  }
}

@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-slide {
    height: 450px;
  }

  .hero-content {
    max-width: 400px;
  }

  .filter-sidebar {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .account-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .account-sidebar {
    margin-bottom: 20px;
  }

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

  .product-gallery-thumbs {
    flex-direction: row;
    width: 100%;
  }

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

  .contact-info-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .page-banner h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 24px;
  }

  .navbar-icons {
    gap: 12px;
  }
}

@media (max-width: 767.98px) {
  .top-bar-right {
    justify-content: center;
    margin-top: 5px;
  }

  .hero-slide {
    height: 400px;
  }

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

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

  .section-padding {
    padding: 40px 0;
  }

  .page-banner {
    padding: 50px 0;
  }

  .page-banner h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .product-gallery-thumbs img {
    width: 60px;
    height: 70px;
  }

  .auth-tabs a {
    font-size: 22px;
  }

  .otp-inputs input {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

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

  .track-progress {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .track-progress::before,
  .track-progress::after {
    display: none;
  }

  .track-step {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .track-step .step-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .order-card { padding: 22px 0; }
  .order-logo-box { width: 90px; height: 90px; min-width: 90px; }
  .order-info-table .oi-label { width: 90px; font-size: 13px; }
  .order-info-table td { font-size: 13px; }
  .order-card .order-amount { font-size: 18px; }
  .order-card .order-actions { gap: 8px; }
  .order-card .order-actions .btn { padding: 7px 14px; font-size: 12px; }

  .footer-title {
    margin-top: 20px;
  }

  .navbar-icons .my-account-link span {
    display: none;
  }
  
}

@media (max-width: 575.98px) {
  .hero-slide {
    height: 350px;
  }

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

  .hero-controls {
    bottom: 15px;
    right: 15px;
  }

  .hero-controls button {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

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

  .btn-gold, .btn-gold-outline, .btn-dark {
    padding: 10px 30px;
    font-size: 13px;
  }

  body {
    font-size: 13px;
  }

  .section-title {
    font-size: 20px;
  }

  .auth-form {
    padding: 0;
  }

  .checkout-section h2 {
    font-size: 18px;
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold-dark);
}

/* ---------- Selection ---------- */
::selection {
  background: var(--primary-gold);
  color: var(--white);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-3px);
}

/* ---------- Loading Animation ---------- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

body.loading { overflow: hidden; }

.loader.hidden {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0) saturate(100%);
  -webkit-backdrop-filter: blur(0) saturate(100%);
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   Auth Pages (Login / Sign Up)
   ============================================ */

.auth-card {
  background: transparent;
  border-radius: 0;
  padding: 40px 0;
  box-shadow: none;
  max-width: 420px;
  margin: 0 auto;
}

.auth-tabs {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  margin-bottom: 35px;
  border-bottom: none;
  padding-bottom: 0;
}

.auth-tab {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  color: #ccc;
 
  position: relative;
  transition: var(--transition);
}

.auth-tab.active {
  color: var(--primary-gold);
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px 2px 0 0;
}

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

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

.auth-input {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
}

.auth-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 71, 0.15);
  background: var(--white);
}

.auth-input::placeholder {
  color: var(--text-light);
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  padding: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.password-toggle:hover {
  color: var(--primary-gold);
}

.forgot-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-medium);
  text-decoration: none;
  transition: var(--transition);
}

.forgot-link:hover {
  color: var(--primary-gold);
}

.btn-gold-pill {
  background: var(--primary-gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}

.btn-gold-pill:hover {
  background: var(--primary-gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 71, 0.4);
}

.btn-gold-pill:disabled,
.btn-gold-pill.disabled,
.btn-gold:disabled,
.btn-gold.disabled {
  background: var(--primary-gold) !important;
  color: var(--white) !important;
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.auth-switch {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
}

.auth-switch a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.auth-switch a:hover {
  color: var(--primary-gold-dark);
  text-decoration: underline;
}

    /* --- Top Bar --- */
    .hp-topbar {
      background: #C8B174;
      padding: 10px 0;
      font-size: 13px;
      color: #fff;
    }

    .hp-topbar .social-circles {
      display: flex;
      gap: 10px;
    }

    .hp-topbar .social-circles a {
      width: 30px;
      height: 30px;
      border: 1px solid rgb(0 0 0);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1E1E1E;
      font-size: 13px;
      transition: 0.3s;
    }

    .hp-topbar .social-circles a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hp-topbar .ship-text {
      color: var(--black);
      font-size: 18px;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .hp-topbar .tr {
      display: flex;
      align-items: center;
      gap: 24px;
      justify-content: flex-end;
    }

    .hp-topbar .tr a {
      color: var(--black);
      font-size: 18px;
    }

    .hp-topbar .tr a:hover {
      color: var(--gold);
    }

    /* --- Navbar (Black) --- */
    .hp-nav {
      background: #0a0a0a;
      padding: 16px 0;

    }
    .hp-nav.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.3s ease;
}

    .hp-nav .nav-link {
      color: #fff !important;
      font-size: 1.2rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 8px 22px !important;
      transition: 0.3s;
      position: relative;
    }

    .hp-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: 0.3s;
    }

    .hp-nav .nav-link:hover::after,
    .hp-nav .nav-link.active::after {
      width: 60%;
    }

    .hp-nav .nav-link:hover,
    .hp-nav .nav-link.active {
      color: var(--gold) !important;
    }

    .main-navbar .ni {
      color: #fff;
      font-size: 20px;
      position: relative;
      transition: 0.3s;
    }

    .main-navbar .ni:hover {
      color: var(--gold);
    }

    .main-navbar .ni .bc {
      position: absolute;
      top: -8px;
      right: -8px;
      background: var(--gold);
      color: #fff;
      font-size: 9px;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    /* --- Hero --- */
.hp-hero {
  background-size: cover;
  background-position: 50% 20%;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 620px;
}

    .hp-hero-inner {
      min-height: 620px;
      display: flex;
      align-items: center;
      position: relative;
    }

    .hp-hero .save {
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .hp-hero h1 {
      
      font-weight: 800;
      font-style: italic;
      text-transform: uppercase;
      color: #fff;
      line-height: 1;
      margin-bottom: 30px;
    }

    .hp-hero h1 .l1 {
      font-size: 60px;
      display: block;
      letter-spacing: 4px;
      font-weight: 800;
    }

    .hp-hero h1 .l2 {
      font-size: 58px;
      display: block;
      letter-spacing: 3px;
      font-weight: 900;
    }

    .hp-hero .shop-btn {
      display: inline-block;
      border: 1.5px solid #C8B174;
      color: #fff;
      padding: 14px 32px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: transparent;
      transition: 0.3s;
      border-radius: 2px;
    }

    .hp-hero .shop-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    /* .hp-hero .gray-circle {
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
    } */

    .hp-hero .model-img {
      position: relative;
      z-index: 2;
      text-align: right;
    }

    .hp-hero .model-img img {
      max-height: 620px;
      width: auto;
      object-fit: contain;
    }

    .hp-hero .dots-deco {
      position: absolute;
      z-index: 4;
      top: 30%;
      left: 48%;
      width: 80px;
      height: 80px;
      transform: rotate(45deg);
    }

    .hp-hero .dots-deco::before {
      content: '';
      display: block;
      width: 80px;
      height: 80px;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.35) 1.5px, transparent 1.5px);
      background-size: 8px 8px;
    }

    .hp-hero .hatch {
      position: absolute;
      z-index: 4;
      border-radius: 50%;
      overflow: hidden;
    }

    .hp-hero .hatch::before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background: repeating-linear-gradient(-45deg, #fff, #fff 2px, transparent 2px, transparent 6px);
    }

    .hp-hero .h1d {
      top: 60px;
      right: 40px;
      width: 90px;
      height: 90px;
      opacity: 0.2;
    }

    .hp-hero .h2d {
      top: 180px;
      right: 10px;
      width: 50px;
      height: 50px;
      opacity: 0.15;
    }

    .hp-hero .hero-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 6;
      display: flex;
      gap: 8px;
    }

    .hp-hero .hero-dots span {
      width: 12px;
      height: 12px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.2);
      cursor: pointer;
    }

    .hp-hero .hero-dots span:nth-child(2) {
      background: var(--gold);
    }

    /* --- 3 Collection Cards --- */
    .cc-row {
      display: flex;
    }

    .cc-card {
      flex: 1;
      position: relative;
      overflow: hidden;
      min-height: 300px;
      display: flex;
      align-items: flex-end;
      padding: 30px 28px;
      cursor: pointer;
    }

    .cc-card img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }

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

    .cc-card .cc-c {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    .cc-card .cc-t {
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.2;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .cc-card .cc-l {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #fff;
      display: inline-block;
      position: relative;
      padding-bottom: 6px;
    }

    .cc-card .cc-l::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--gold);
      transition: 0.3s;
    }

    .cc-card:hover .cc-l::after {
      width: 100%;
    }

    /* --- Section Header with Category Tabs --- */
    .sec-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    
      border-bottom: 1px solid #ddd;
      flex-wrap: wrap;
      gap: 10px;
    }

    .sec-hdr h2 {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 30px;
      line-height: 1.3;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--text-dark);
    }

    .sec-hdr .cat-tabs {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .sec-hdr .cat-tabs a {
      font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--text);
    transition: 0.3s;
    }

    .sec-hdr .cat-tabs a:hover,
    .sec-hdr .cat-tabs a.active {
      color: var(--gold);
    }

    /* --- Product Card (new design) --- */
    .pd-card {
      position: relative;
      margin-bottom: 28px;
      border: 1px solid rgb(234, 234, 242);
      padding: 5px;
      border-radius: 10px;
    }

    .pd-card .pd-img {
      position: relative;
      background: #f5f5f5;
      overflow: hidden;
      aspect-ratio: 3/4;
    }

    .pd-card .pd-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s;
    }

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

    .pd-card .pd-heart {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 3;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #555;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .pd-card .pd-heart:hover {
      color: var(--gold);
    }

    .pd-card .pd-atc {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px;
      transform: translateY(100%);
      transition: 0.3s;
      font-size: 13px;
      color: #333;
      font-weight: 500;
      cursor: pointer;
    }

    .pd-card:hover .pd-atc {
      transform: translateY(0);
    }

    .pd-card .pd-atc i {
      font-size: 15px;
    }

    .pd-card .pd-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
    }

    .pd-card .pd-cats {
      font-size: 10px;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 500;
    }

    .pd-card .pd-rating {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .pd-card .pd-rating i {
      color: #FBBC05;
      font-size: 13px;
    }

    .pd-card .pd-rating span {
      font-size: 13px;
      font-weight: 500;
      color: #333;
    }

    .pd-card .pd-name {
      font-size: 14px;
      font-weight: 400;
    color: #1E1E1E;
      margin-top: 4px;
    }

    .pd-card .pd-price {
      font-size: 18px;
      font-weight: 700;
      color: #111;
      margin-top: 4px;
    }

    /* --- Carousel Arrows on Cards --- */
    .section-arrow {
      position: absolute;
      top: 38%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border: 1.5px solid #ccc;
      background: #fff;
      color: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 5;
      font-size: 14px;
      transition: 0.3s;
    }

    .section-arrow:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .section-arrow.sa-left {
      left: -18px;
    }

    .section-arrow.sa-right {
      right: -18px;
    }

    /* --- Promo Side Banner (For Women / Men / Sports left column) --- */
    .promo-tall {
      position: relative;
      overflow: hidden;
      height: 100%;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
    }

    .promo-tall img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .promo-tall .pt-content {
      position: absolute;
      z-index: 2;
      color: #fff;
      padding: 20px;
      top: 39%;
      text-align: center;
      width: 100%;
    }

    .promo-tall .pt-content p {
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1.4;
      margin-bottom: 3px;
    }

    /* --- Sale Banner (Promo Big) --- */
.promo-section {
  position: relative;
  padding: 80px 0;
  background: #f5f5f5;
}

/* GOLD BACKGROUND */
.promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to right, #b88a5a, #d4b483);
  z-index: 1;
}

/* WRAPPER */
.promo-wrapper {
  position: relative;
 background: linear-gradient(to right, #5898A2, #6FAAB6);
  z-index: 2;
}

/* LEFT WHITE CARD */
.promo-card {
  background: #fff;
  padding: 40px 65px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.promo-sub {
  font-size: 12px;
  color: #b88a5a;
  letter-spacing: 1px;
}

.promo-card h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 15px 0;
}

.promo-card p {
  font-size: 14px;
  color: #666;
}

.price {
  font-size: 14px;
  margin-top: 10px;
}

.price strong {
  font-size: 18px;
}

/* IMAGE */
.promo-image {
  position: relative;
}

.promo-image img {
  width: 100%;
  height: auto;
  display: block;
  object-position: center 10%;
}

/* DECORATION (optional dots) */
.promo-image::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#fff 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .promo-card {
   
    text-align: center;
  }

  .promo-card h2 {
    font-size: 22px;
  }
}
    .promo-big .pb-img .hatch-deco {
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      opacity: 0.2;
    }

    .promo-big .pb-img .hatch-deco::before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background: repeating-linear-gradient(-45deg, #fff, #fff 2px, transparent 2px, transparent 6px);
    }

    /* --- Sale Duo Banners --- */
    .sale-duo-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      height: 100%;
    }

    .sale-duo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 360px;
      transition: 0.5s;
    }

    .sale-duo-card:hover img {
      transform: scale(1.03);
    }

    .sale-duo-card .sd-content {
      position: relative;
      z-index: 2;
    }

    .sale-duo-card .sd-sub {
      font-size: 12px;
      color: var(--gold);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 6px;
    }

    .sale-duo-card .sd-title {
   
      font-size: 26px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 14px;
      line-height: 1.15;
    }

    .sale-duo-card .sd-btn {
      display: inline-block;
      border: 1.5px solid #ccc;
      color: #333;
      padding: 10px 24px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: transparent;
      transition: 0.3s;
    }

    .sale-duo-card .sd-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .sd-left {
      display: flex;
      flex-direction: column;
    }

    .sd-left .sd-text {
      padding: 30px;
      flex: 0 0 auto;
    }

    .sd-left img {
      flex: 1;
      object-fit: cover;
      min-height: 250px;
    }

    .sd-right {
      position: relative;
    }

    .sd-right img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .sd-right .sd-text-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.9);
      padding: 25px 30px;
      z-index: 2;
    }

    /* --- Instagram Feed (White bg) --- */
    .ig-feed {
      padding: 30px 0 30px;
      background: #fff;
    }

    .ig-feed h2 {
      /*  */
      font-size: 28px;
      font-weight: 700;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 25px;
      letter-spacing: 2px;
    }

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

    .ig-grid .ig-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
      cursor: pointer;
    }

    .ig-grid .ig-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }

    .ig-grid .ig-item:hover img {
      transform: scale(1.08);
      filter: brightness(0.7);
    }

    /* --- Features Bar --- */
    .features-bar {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

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

    .feat-item i {
      font-size: 28px;
      color: #C4AC71;
      margin-bottom: 10px;
      display: block;
    }

    .feat-item h6 {
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .feat-item p {
      font-size: 14px;
      color: var(--gray);
      margin: 0;
    }

    /* --- Footer Override --- */
    .hp-footer {
      background: #1a1a1a;
      padding: 50px 0 0;
      color: rgba(255, 255, 255, 0.8);
    }
    .footer-img img{
      height: 100%;
      width: 100%;
      max-width: 200px;
      max-height: 200px;
    }

    .hp-footer .ft-logo {
      margin-bottom: 10px;
    }

    .hp-footer .ft-logo svg {
      width: 80px;
      height: 80px;
    }

    .hp-footer .ft-brand {
      font-family: 'Great Vibes', cursive;
      font-size: 30px;
      color: var(--gold);
      display: block;
      line-height: 1;
    }

    .hp-footer .ft-tag {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .hp-footer .ft-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 18px;
    }

    .hp-footer .ft-links li {
      margin-bottom: 8px;
    }

    .hp-footer .ft-links li a {
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
      transition: 0.3s;
    }

    .hp-footer .ft-links li a:hover {
      color: var(--gold);
      padding-left: 3px;
    }

    .hp-footer .ft-links li a::before {
      content: '•';
      margin-right: 8px;
      color: rgba(255, 255, 255, 0.35);
    }

    .hp-footer .ft-social a {
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .hp-footer .ft-social a i {
      color: var(--gold);
      width: 18px;
      font-size: 14px;
    }

    .hp-footer .ft-social a:hover {
      color: var(--gold);
    }

    .hp-footer .ft-sub p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .hp-footer .ft-sub .input-group input {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 12px;
      padding: 10px 14px;
    }

    .hp-footer .ft-sub .input-group input::placeholder {
      color: rgba(255, 255, 255, 0.35);
    }

    .hp-footer .ft-sub .input-group input:focus {
      border-color: var(--gold);
      box-shadow: none;
    }

    .hp-footer .ft-sub .btn-sub {
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: transparent;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 10px 18px;
      transition: 0.3s;
    }

    .hp-footer .ft-sub .btn-sub:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    .hp-footer .ft-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 18px 0;
      margin-top: 5px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hp-footer .ft-bottom .copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
    }

    .hp-footer .ft-bottom .pay-icons img {
      height: 22px;
      margin-left: 6px;
      opacity: 0.7;
    }

    .hp-footer .ft-bottom .pay-icons img:hover {
      opacity: 1;
    }
.ni-img img{
  height: 100%;
  width: 100%;
  max-height: 80px;
  max-width: 80px;
}
.dropdown .dropdown-toggle {
  background:none;border:none;color:#1E1E1E;font-size:18px;
}
.nav-gap{
  gap: 30px;
}
.account-ni{
  gap:6px;font-size:13px!important;
}
.account-ni .fa-user{
font-size:18px;
}
.offcanvas-body .nav .nav-link{
  color: var(--black);
}
.store-section {
      padding: 45px 0;
    }

    /* Filter tags - gold filled "All", outlined others */
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 25px;
    }
    .filter-tag {
      padding: 2px 25px;
      border: 1.5px solid var(--primary-gold);
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 400;
      cursor: pointer;
      transition: all 0.3s ease;
      background: transparent;
      color: var(--primary-gold);
    }
    .filter-tag:hover {
      background: var(--primary-gold);
      color: #fff;
    }
    .filter-tag.active {
      background: var(--primary-gold);
      border-color: var(--primary-gold);
      color: #fff;
    }

    /* Sidebar filter group titles with gold border-bottom */
    .filter-sidebar h4 {
   
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--primary-gold);
    }

    /* Product cards with tinted backgrounds */
    .product-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      position: relative;
      margin-bottom: 25px;
    }
    .product-card .product-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-card .product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 15px;
      transition: all 0.5s ease;
    }
    /* Tinted backgrounds per product */
    .product-card.bg-warm .product-image { background: #faf0eb; }
    .product-card.bg-neon .product-image { background: #f0f5f0; }
    .product-card.bg-teal .product-image { background: #eef5f5; }
    .product-card.bg-coral .product-image { background: #f8eeef; }
    .product-card.bg-gray .product-image { background: #f2f2f2; }
    .product-card.bg-blue .product-image { background: #eef2f8; }
    .product-card.bg-sky .product-image { background: #edf4f9; }
    .product-card.bg-neutral .product-image { background: #f5f5f5; }
    .product-card.bg-red .product-image { background: #f5eeed; }
    .product-card.bg-rose .product-image { background: #f5f0f2; }
    .product-card.bg-mint .product-image { background: #eef5f2; }
    .product-card.bg-purple .product-image { background: #f2f0f5; }

    /* Sort bar */
    .sort-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid #e5e5e5;
    }

    /* Navbar logo with SVG */
    

    /* Color swatches - smaller circles */
    .color-swatches {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .color-swatch {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .color-swatch:hover,
    .color-swatch.active {
      border-color: var(--primary-gold);
      transform: scale(1.15);
    }

    /* Pagination */
    .pagination-custom .page-item .page-link {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border-radius: 4px;
      font-size: 13px;
      color: #333;
      border: 1px solid #e5e5e5;
      margin: 0 3px;
    }
    .pagination-custom .page-item.active .page-link,
    .pagination-custom .page-item .page-link:hover {
      background: var(--primary-gold);
      border-color: var(--primary-gold);
      color: #fff;
    }
    /* --- Responsive --- */
    @media(max-width:1199.98px) {
      .hp-hero h1 .l1 {
        font-size: 44px;
      }

      .hp-hero h1 .l2 {
        font-size: 48px;
      }

      /* .hp-hero .gray-circle {
        width: 400px;
        height: 400px;
      } */
    }

    @media(max-width:991.98px) {
      .hp-hero {
        min-height: 420px;
      }

      .hp-hero-inner {
        min-height: 420px;
      }

      .hp-hero h1 .l1 {
        font-size: 34px;
      }

      .hp-hero h1 .l2 {
        font-size: 38px;
      }

      .hp-hero .dots-deco,
      .hp-hero .hatch {
        display: none;
      }

      .cc-row {
        flex-wrap: wrap;
      }

      .cc-card {
        flex: 0 0 100%;
        min-height: 220px;
      }

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

      .sec-hdr {
        flex-direction: column;
        align-items: flex-start;
      }

      .sec-hdr .cat-tabs {
        flex-wrap: wrap;
        gap: 15px;
      }
    }

    @media(max-width:767.98px) {
      .hp-hero h1 .l1 {
        font-size: 28px;
      }

      .hp-hero h1 .l2 {
        font-size: 32px;
      }

      .hp-hero .gray-circle {
        display: none;
      }

      .hp-hero .model-img img {
        max-height: 300px;
      }

      .sec-hdr h2 {
        font-size: 26px;
      }

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

      .promo-tall {
        min-height: 280px;
      }
      .hp-hero {
    background: url("/images/bannerni.png");
    background-size: cover;
    background-position: 50% 20%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px !important;
}
.product-meta {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid var(--border-color);
}

    }

  

/* Swiper Hero Customizations */
/* .hp-hero {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 0;
  position: relative;
} */

.hero-slide-bg {
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide-bg .save {
  color: var(--primary-gold);
  font-family: var(--font-body);
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.hero-slide-bg h1 {
  font-family: var(--font-body);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-slide-bg h1 .l1 {
  -webkit-text-stroke: 1.5px #fff;
  color: transparent;
  display: block;
}

.hero-slide-bg h1 .l2 {
  color: #fff;
  display: block;
}

/* .hero-img-wrap .gray-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  width: 450px;
  height: 450px;
  background-color: #333;
  border-radius: 50%;
  z-index: 1;
} */

.hero-img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-img-wrap .model-img {
  position: relative;
  z-index: 2;
  text-align: right;
  height: 100%;
}

.hero-img-wrap .model-img img {
  max-height: 620px !important;
  object-fit: contain;
  object-position: bottom;
}

.hero-swiper .swiper-pagination {
  bottom: 25px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  opacity: 1;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: #C8B174;
}

.dots-deco {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#fff 15%, transparent 16%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  opacity: 0.3;
  z-index: 1;
  transform: rotate(45deg);
}

/* Collection Cards */
.collection-cards-wrapper {
  overflow: hidden;
  margin-top: -1%;
  /* padding: 0 0 40px 0; */
}

.cc-card-wrapper {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cc-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  z-index: 1;
}

.cc-c {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 40px;
  width: 100%;
  color: #fff;
}

.cc-t {
  font-family: "Syne";
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.cc-l {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.cc-l::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.cc-l:hover {
  color: #fff;
}

.cc-l:hover::after {
  background-color: var(--primary-gold);
  width: 35px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background:#C8B174;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.qty-btn:hover {
  background: #555;
}

.qty-input {
  width: 50px;
  text-align: center;
  height: 30px;
}
.form-gray-check{
  color: var(--text-medium);
}
    /* ---- Index page responsive tweaks ---- */
    .hero-seip{
position:relative;z-index:5;padding:60px 0;
    }
    /* Hero text column: reduce inline padding on smaller screens */
    @media (max-width: 767.98px) {
      .hero-slide-bg .col-md-6[style],
      .hero-slide-bg .col-lg-5[style] {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
      }
      /* Sale duo: right card doesn't need 400px on mobile */
      .sd-right { min-height: 280px !important; }
      .sd-left img { min-height: 180px; }
    }

    @media (max-width: 575.98px) {
      .hero-slide-bg .col-md-6[style],
      .hero-slide-bg .col-lg-5[style] {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
      }
          .hero-seip{
position:relative;z-index:5;padding:30px 30px;
    }
      /* Sale duo banners: stack and shrink */
      .sd-right { min-height: 220px !important; }
      .sale-duo-card .sd-title { font-size: 20px; }
      .sale-duo-card .sd-btn { padding: 8px 18px; font-size: 11px; }
      /* Instagram grid: 2 col is fine but tighten gap */
      .ig-grid { gap: 2px; }
      /* Collection cards: reduce padding inside */
      .cc-c { padding: 16px !important; }
      .cc-t { font-size: 20px; }
    }

    @media (max-width: 480px) {
      /* Hero h1 extra-small */
      .hero-slide-bg h1 { font-size: 26px; letter-spacing: 1px; }
      .hero-slide-bg .save { font-size: 13px; }
    }

    /* ---- Product section carousel arrows ---- */
    .section-arrow {
      position: absolute;
      top: 38%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border: 1.5px solid #ccc;
      background: #fff;
      color: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 5;
      font-size: 14px;
      transition: 0.3s;
      border-radius: 0;
    }
    .section-arrow:hover {
      border-color: var(--gold, #C5A047);
      color: var(--gold, #C5A047);
    }
    .section-arrow.sa-left  { left: -18px; }
    .section-arrow.sa-right { right: -18px; }

    /* ---- Hero Swiper navigation buttons ---- */
    .hero-btn-prev,
    .hero-btn-next {
      color: #fff;
      width: 44px;
      height: 44px;
    }
    .hero-btn-prev::after,
    .hero-btn-next::after {
      font-size: 18px;
      font-weight: 700;
    }
    .hero-btn-prev:hover,
    .hero-btn-next:hover {
      color: var(--primary-gold, #C5A047);
    }
    @media (max-width: 575.98px) {
      .hero-btn-prev, .hero-btn-next { display: none; }
    }

  @media(max-width:575.98px) {
      .hp-hero h1 .l1 {
        font-size: 24px;
      }

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

      .hp-hero {
        min-height: auto;
      }

      .hp-hero-inner {
        min-height: auto;
        flex-wrap: wrap;
      }
      .cc-card-wrapper {
    min-height: 185px;

}
.cc-c {

    padding: 20px ;

}
    }

/* ============================================================
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS — All Pages / Devices
   ============================================================ */

/* ---- Store Page: Mobile Filter Toggle Button ---- */
.filter-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-gold);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  width: 100%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.filter-toggle-btn:hover { background: var(--primary-gold-dark); }
    .image-wrapper {
      position: relative;
      max-width: 900px;
      margin: 30px ;
    }

    .img-box {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 1px !important;
    }

    .img-left {
      width: 45%;
    }

    .img-right {
      width: 45%;
      position: absolute;
      right: 0;
      top: 80px;
      right: 25%;
    }
.abo-image{
  height:400px !important;object-fit:cover;
}
.about-section {
      background: #fff;
  
    }

    /* Headings */
    .about-block h2 {
      font-family: 'Syne', sans-serif;
      font-size: 36px;
      font-weight: 700;
      line-height: 1;
      color: #111;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .about-block h2::after {
      content: '';
      display: block;
      width: 44px;
      height: 3px;
      background: #C5A047;
      margin-top: 12px;
      margin-bottom: 22px;
    }

    /* Paragraphs */
    .about-block p {
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      color: #555;
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 14px;
    }

    /* All block images */
    .about-block img {
      width: 100%;
      object-fit: cover;
      border-radius: 6px;
      display: block;
    }

    /* Navbar hamburger icon colour */
    .btn.d-lg-none i { color: #333; }

    /* ── Tablet (≤ 991px) ─────────────────────────────────────── */
    @media (max-width: 991.98px) {
      .about-section    { padding: 50px 0; }
      .about-block      { padding: 10px 0 !important; }
      .about-block h2   { font-size: 30px; }
      .about-block p    { font-size: 14px; }
    }

    /* ── Mobile Landscape (≤ 767px) ──────────────────────────── */
    @media (max-width: 767.98px) {
      /* Hide topbar extras to avoid tall stacked topbar */
      .top-bar .top-bar-center { display: none; }
      .top-bar-right            { display: none; }

      .about-section  { padding: 36px 0; }
      .about-block    { padding: 5px 0 !important; }
      .about-block h2 { font-size: 26px; }
      .about-block p  { font-size: 14px; }

      /* Single-image blocks: limit height, add breathing room */
      .about-block > .row > [class*="col-md"] img {
        max-height: 250px;
    
      }
    }

    /* ── Mobile Portrait (≤ 575px) ──────────────────────────── */
    @media (max-width: 575.98px) {
      .about-section  { padding: 24px 0; }
      .about-block    { padding: 16px 0; }
      .about-block h2 { font-size: 22px; }
      .about-block p  { font-size: 13px; line-height: 1.7; }

      /* Reduce inner padding on about-block container */
      .about-block.container { padding-left: 0; padding-right: 0; }

      /* Single-image blocks */
      .about-block > .row > [class*="col-md"] img { max-height: 220px; }

      /* Navbar icons: tighten gap */
      .navbar-icons { gap: 10px; }
      .navbar-icons .my-account-link span { display: none; }
    }

    /* ── Extra-small (≤ 480px) ───────────────────────────────── */
    @media (max-width: 480px) {
      .about-block h2 { font-size: 20px; }
      .about-block p  { font-size: 12px; }
      .page-banner    { padding: 40px 0; }
      .page-banner h1 { font-size: 22px; }
    }
    @media (max-width: 768px) {
      .image-wrapper {
        display: flex;
      
        gap: 20px;
      }

      .img-left,
      .img-right {
        position: static;
        width: 100%;
      }
    }
     /* ---- Checkout Page Styles ---- */
    .checkout-section-title {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 25px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--border-color);
    }
    .checkout-section-title span {
      color: var(--primary-gold);
      font-family: var(--font-body);
      font-weight: 600;
      margin-right: 8px;
    }

    /* Order Details Table */
    .order-table {
      width: 100%;
      border-collapse: collapse;
    }
    .order-table thead th {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--text-light);
      padding: 10px 12px;
      border-bottom: 2px solid var(--border-color);
      letter-spacing: 0.5px;
    }
    .order-table tbody td {
      padding: 16px 12px;
      vertical-align: middle;
      border-bottom: 1px solid var(--border-color);
      font-size: 14px;
      color: var(--text-dark);
    }
    .order-table .product-thumb {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: var(--radius-sm);
    }
    .order-table .product-name {
      font-weight: 500;
      color: var(--dark);
    }
    .order-table .product-meta {
      font-size: 12px;
      color: var(--text-light);
    }

    /* Quantity Selector */
    .qty-selector {
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .qty-selector button {
      width: 30px;
      height: 30px;
      border: none;
      background: var(--primary-gold);
      color: #fff;
      font-size: 12px;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .qty-selector button:hover {
      background: var(--primary-gold-dark);
      color: #fff;
    }
    .qty-selector input {
      width: 36px;
      height: 30px;
      border: none;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      text-align: center;
      font-size: 13px;
      font-family: var(--font-body);
      outline: none;
      background: #fff;
    }

    /* Coupon */
    .coupon-row {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .coupon-row input {
      flex: 1;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      padding: 10px 15px;
      font-size: 13px;
      font-family: var(--font-body);
      outline: none;
      transition: var(--transition);
    }
    .coupon-row input:focus {
      border-color: var(--primary-gold);
    }
    .coupon-row .btn-coupon {
      background: var(--primary-gold);
      color: #fff;
      border: none;
      border-radius: var(--radius-sm);
      padding: 10px 20px;
      font-size: 12px;
      font-weight: 600;
      font-family: var(--font-body);
      white-space: nowrap;
      cursor: pointer;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .coupon-row .btn-coupon:hover {
      background: var(--primary-gold-dark);
    }

    /* Cart Totals */
    .cart-totals {
      background: var(--light-bg);
      border-radius: var(--radius-md);
      padding: 20px 24px;
    }
    .cart-totals .totals-title {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--border-color);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .cart-totals .totals-row {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      font-size: 14px;
      color: var(--text-dark);
    }
    .cart-totals .totals-row:not(:last-child) {
      border-bottom: 1px solid var(--border-color);
    }
    .cart-totals .totals-row.total {
      font-weight: 700;
      font-size: 16px;
      color: var(--dark);
    }
    .cart-totals .totals-row .amount {
      font-weight: 600;
    }

    /* Billing Form */
    .billing-form .form-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .billing-form .form-control,
    .billing-form .form-select {
      border: 1px solid #e5e5e5;
      border-radius: var(--radius-sm);
      padding: 12px 15px;
      font-size: 14px;
      font-family: var(--font-body);
      color: var(--text-dark);
      transition: var(--transition);
    }
    .billing-form .form-control:focus,
    .billing-form .form-select:focus {
      border-color: var(--primary-gold);
      box-shadow: 0 0 0 3px rgba(197, 160, 71, 0.12);
    }
    .billing-form .form-check-input:checked {
      background-color: var(--primary-gold);
      border-color: var(--primary-gold);
    }

    /* Billing form – square inputs */
    .billing-form .form-control,
    .billing-form .form-select {
      border-radius: 0;
    }
    .billing-form .remember-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
      display: block;
    }

    /* Payment Section */
    .payment-box {
      background: transparent;
      padding: 0;
    }
    .payment-option {
      border: 1px solid var(--border-color);
      border-radius: 0;
      padding: 14px 18px;
      margin-bottom: 12px;
      background: #fff;
      cursor: pointer;
      transition: var(--transition);
    }
    .payment-option:hover,
    .payment-option.active {
      border-color: var(--primary-gold);
    }
    .payment-option .form-check-input:checked {
      background-color: var(--primary-gold);
      border-color: var(--primary-gold);
    }
    .payment-option .form-check-label {
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      cursor: pointer;
    }
    .payment-sub {
      font-size: 12px;
      color: var(--text-medium);
      margin: 4px 0 8px 0;
    }
    .payment-icons {
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .payment-icons img {
      height: 30px;
      object-fit: contain;
      border: 1px solid var(--border-color);
      border-radius: 4px;
      padding: 2px 6px;
      background: #fff;
    }
    .card-fields {
      margin-top: 12px;
      display: none;
    }
    .card-fields.show {
      display: block;
    }
    .card-fields .form-control {
      border: 1px solid var(--border-color);
      border-radius: 0;
      padding: 10px 12px;
      font-size: 14px;
      font-family: var(--font-body);
      transition: var(--transition);
    }
    .card-fields .form-control:focus {
      border-color: var(--primary-gold);
      box-shadow: 0 0 0 3px rgba(197, 160, 71, 0.12);
    }
    .card-number-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 8px;
    }
    .card-num-box {
      text-align: center;
    }
    .cvv-wrap {
      position: relative;
    }
    .cvv-wrap .cvv-icon {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-light);
      font-size: 14px;
      pointer-events: none;
    }
    .privacy-text {
      font-size: 12px;
      color: var(--text-medium);
      line-height: 1.6;
      margin: 16px 0 12px;
    }
    .privacy-text a {
      color: var(--text-dark);
      text-decoration: underline;
    }
    .terms-label {
      font-size: 13px;
      color: var(--text-dark);
    }
    .terms-label a {
      color: var(--text-dark);
      text-decoration: underline;
    }
    .payment-note {
      font-size: 12px;
      color: var(--text-medium);
      margin-top: 12px;
      line-height: 1.5;
    }
    .btn-place-order {
      background: var(--primary-gold);
      color: #fff;
      border: none;
      border-radius: 0;
      padding: 14px 40px;
      font-size: 14px;
      font-weight: 600;
      font-family: var(--font-body);
      letter-spacing: 1px;
      text-transform: uppercase;
      width: 100%;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 16px;
    }
    .btn-place-order:hover {
      background: var(--primary-gold-dark);
      color: #fff;
    }

    .remove-item {
      color: var(--text-light);
      font-size: 16px;
      transition: var(--transition);
    }
    .remove-item:hover {
      color: #e74c3c;
    }

    @media (max-width: 767px) {
      .order-table thead { display: none; }
      .order-table tbody tr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 14px 0;
        gap: 15px;
      }
      .order-table tbody td {
        border: none;
        padding: 4px 10px;
      }
      .order-table tbody td:first-child { width: 60px; }
      .order-table tbody td:nth-child(2) { flex: 1; }
      .coupon-row { flex-direction: column; }
    }
    /* --- Confirmation Section --- */
    .confirmation-section {
      padding: 60px 0;
    }
    .confirmation-box {
      max-width: 650px;
      margin: 0 auto;
      text-align: center;
    }
    .confirmation-box .check-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--primary-gold);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin-bottom: 30px;
    }
    .confirmation-box h2 {
      
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      font-size: 26px;
      color: var(--dark);
    }
    .confirmation-box .confirmation-text {
      color: var(--text-medium);
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 40px;
    }

    /* Order Detail Rows */
    .order-details {
      text-align: left;
      margin-bottom: 40px;
    }
    .order-details .detail-row {
      display: flex;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid #e9e9e9;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
    }
    .order-details .detail-label {
      width: 130px;
      flex-shrink: 0;
      font-weight: 400;
      color: var(--text-light);
    }
    .order-details .detail-sep {
      width: 20px;
      text-align: center;
      color: var(--text-light);
      flex-shrink: 0;
    }
    .order-details .detail-value {
      font-weight: 600;
      color: var(--text-dark);
    }

    .btn-continue {
      background: var(--primary-gold);
      color: #fff;
      border: 2px solid var(--primary-gold);
      padding: 12px 40px;
      border-radius: 30px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    
    }
    .btn-continue:hover {
      background: transparent;
      color: var(--primary-gold);
    }

    /* ---- Responsive ---- */
    @media (max-width: 767.98px) {
      .confirmation-section { padding: 50px 0; }
      .confirmation-box { padding: 0 4px; }

      /* Stack label / value vertically, hide the ":" separator */
      .order-details .detail-row {
        flex-direction: column;
        gap: 2px;
        padding: 10px 0;
      }
      .order-details .detail-label {
        width: 100%;
        flex-shrink: unset;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.7px;
        color: var(--text-light);
      }
      .order-details .detail-sep { display: none; }
      .order-details .detail-value { font-size: 15px; }

      /* Full-width continue button */
      .btn-continue { max-width: 100%; width: 100%; text-align: center; padding: 12px 20px; }
    }

    @media (max-width: 575.98px) {
      .confirmation-section { padding: 36px 0; }
      .confirmation-box h2 { font-size: 19px; letter-spacing: 1px; }
      .confirmation-box .confirmation-text { font-size: 13px; line-height: 1.7; margin-bottom: 28px; }
      .confirmation-box .check-icon { width: 65px; height: 65px; font-size: 28px; margin-bottom: 20px; }
    }
     /* Make all form inputs full touch-friendly height */
    #contactForm .form-control,
    #contactForm .form-select {
      min-height: 48px;
    }
    #contactForm textarea.form-control {
      min-height: unset; /* let rows attribute control textarea height */
    }

    @media (max-width: 575.98px) {
      .section-padding { padding: 30px 0; }

      /* Form heading */
      #contactForm + * h2,
      .container h2[style] { font-size: 20px !important; }

      /* Submit button full-width on xs */
      #contactForm .text-center button { max-width: 100% !important; }

      /* Contact info cards single column */
      .row.text-center .col-sm-6 { margin-bottom: 0; }
    }

    @media (max-width: 400px) {
      #contactForm .form-control,
      #contactForm .form-select { font-size: 14px; }
    }
        /* Login page responsive tweaks */
    @media (max-width: 575.98px) {
      .section-padding { padding: 30px 0; }
      .auth-card { padding: 22px 12px; border-radius: 6px; }
      .auth-input { min-height: 48px; font-size: 15px; }
      .btn-gold-pill { min-height: 48px; font-size: 13px; }
      .password-toggle { top: 50%; transform: translateY(-50%); right: 12px; }
    }
    @media (max-width: 400px) {
      .auth-tabs { gap: 16px; }
      .auth-tab { font-size: 15px !important; }
    }
     /* Product Gallery */
    .product-gallery {
      display: flex;
      gap: 12px;
    }
    .product-thumbnails {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 80px;
      flex-shrink: 0;
    }
    .product-thumbnails img {
      width: 70px;
      height: 80px;
      object-fit: cover;
      border: 2px solid transparent;
      cursor: pointer;
      transition: border-color 0.3s;
      border-radius: 3px;
      background: #f5f5f5;
    }
    .product-thumbnails img:hover,
    .product-thumbnails img.active {
      border-color: var(--primary-gold, #C5A047);
    }
    .product-main-image {
      flex: 1;
      overflow: hidden;
      border-radius: 3px;
      background: #f5f5f5;
    }
    .product-main-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 3px;
      transition: transform 0.4s;
     object-position: center 10%;
      background-size: cover;
    }
    .product-main-image:hover img {
      transform: scale(1.05);
    }

    /* Product Info */
    .product-detail-info {
      padding-left: 25px;
    }
    .product-detail-title {
      /*  */
      font-size: 22px;
      font-weight: 700;
      color: var(--dark, #1a1a1a);
      margin-bottom: 10px;
      line-height: 1.3;
      text-transform: uppercase;
    }
    .product-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }
    .product-rating .stars {
      color: var(--primary-gold, #C5A047);
      font-size: 13px;
    }
    .product-rating .rating-text {
      font-size: 13px;
      color: #888;
      font-family: 'Poppins', sans-serif;
    }
    .product-detail-price {
      font-family: 'Poppins', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--dark, #1a1a1a);
      margin-bottom: 15px;
    }
    .product-description {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: #888;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    /* Quantity & Add to Cart */
    .quantity-cart-row {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    .quantity-cart-row label {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark, #1a1a1a);
      margin-right: 2px;
    }
    .qty-input-group {
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 3px;
      overflow: hidden;
    }
    .qty-input-group button {
      width: 36px;
      height: 38px;
      border: none;
      background: transparent;
      font-size: 15px;
      cursor: pointer;
      transition: background 0.3s;
      color: var(--dark, #1a1a1a);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .qty-input-group button:hover {
      background: var(--primary-gold, #C5A047);
      color: #fff;
    }
    .qty-input-group input {
      width: 44px;
      height: 38px;
      border: none;
      text-align: center;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      outline: none;
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
    }
    .btn-add-cart {
            background:transparent;
      color:#555555;
      border: 2px solid #C8B174;
      padding: 10px 30px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s;
      white-space: nowrap;
    }
    .btn-add-cart:hover {
      background: #b08930;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(197, 160, 71, 0.4);
    }

    /* Product Meta */
    .product-meta {
      border-top: 1px solid #eee;
      padding-top: 18px;
      margin-top: 5px;
    }
    .product-meta p {
font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: #888;
      margin-bottom: 10px;
    }
    .product-meta p strong {
      color: var(--dark, #1a1a1a);
      font-weight: 500;
      margin-right: 6px;
    }
    .product-meta p a {
      color: #888;
      text-decoration: none;
      transition: color 0.3s;
    }
    .product-meta p a:hover {
      color: var(--primary-gold, #C5A047);
    }
    .share-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #f5f5f5;
      color: #888;
      font-size: 12px;
      margin-right: 4px;
      transition: all 0.3s;
      text-decoration: none;
    }
    .share-icons a:hover {
      background: var(--primary-gold, #C5A047);
      color: #fff;
    }

    /* Color Options */
    .color-options {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      margin-top: 5px;
    }
    .color-options label {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--dark, #1a1a1a);
      margin-right: 2px;
    }
    .color-circle {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s;
      display: inline-block;
    }
    .color-circle:hover,
    .color-circle.active {
      border-color: var(--primary-gold, #C5A047);
      transform: scale(1.15);
    }

    /* Product Tabs */
    .product-tabs {
      margin-top: 60px;
    }
    .product-tabs .nav-tabs {
      border-bottom: 1px solid #e5e5e5;
      justify-content: flex-start;
      gap: 0;
      padding: 0;
    }
    .product-tabs .nav-tabs .nav-link {
   font-family: 'Syne', sans-serif;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #1a1a1a;
      border: none;
      padding: 14px 30px;
      transition: all 0.3s;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      background: transparent;
    }
    .product-tabs .nav-tabs .nav-link:hover {
      color: var(--primary-gold, #C5A047);
    }
    .product-tabs .nav-tabs .nav-link.active {
      color: var(--primary-gold, #C5A047);
      border-bottom-color: var(--primary-gold, #C5A047);
      background: transparent;
    }
    .tab-description {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: #666;
      line-height: 1.8;
      padding: 30px 0;
    }
    .tab-description p {
      margin-bottom: 15px;
    }

    /* Additional Info Table */
    .specs-table {
      width: 100%;
      border-collapse: collapse;
    }
    .specs-table tr {
      border-bottom: 1px solid #e5e5e5;
    }
    .specs-table tr:last-child {
      border-bottom: 1px solid #e5e5e5;
    }
    .specs-table tr td {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      padding: 16px 20px;
      border: none;
      vertical-align: middle;
    }
    .specs-table tr td:first-child {
      font-weight: 700;
      color: #1a1a1a;
      width: 280px;
    }
    .specs-table tr td:last-child {
      color: #777;
      font-weight: 400;
    }
    .tab-additional-info {
      padding: 30px 0 10px;
    }

    /* Reviews Section */
    .reviews-section {
      padding: 30px 0 10px;
    }

    /* Rating Summary */
    .rating-summary {
        display: flex;
      gap: 40px;
      padding: 30px ;
      border-bottom: 1px solid #e5e5e5;
      margin-bottom: 10px;;
    }
    .rating-summary-left {
      flex-shrink: 0;
      min-width: 130px;
    }
    .rating-label {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #1a1a1a;
    }
    .avg-rating-value {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 6px;
    }
    .avg-rating-value i {
      color: #FFBE2C;
      font-size: 16px;
    }
    .avg-rating-value span {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #1a1a1a;
    }
    .rating-summary-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
      justify-content: center;
    }
    .rating-bar-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .rating-bar {
      flex: 1;
      height: 10px;
      background: #e8e8e8;
      border-radius: 0;
      overflow: hidden;
    }
    .rating-bar-fill {
      height: 100%;
      background: #FFBE2C;
      border-radius: 0;
    }
    .rating-bar-label {
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      color: #999;
      min-width: 42px;
      text-align: right;
    }

    /* Review List */
    .review-list {
      padding-top: 10px;
    }
    .review-item {
      display: flex;
      gap: 20px;
      padding: 25px 0;
      border-bottom: 1px solid #e5e5e5;
    }
    .review-item:last-child {
      border-bottom: 1px solid #e5e5e5;
    }
    .review-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .review-content {
      flex: 1;
    }
    .review-stars {
      color: #FF9931;
      font-size: 14px;
      margin-bottom: 6px;
      display: flex;
      gap: 2px;
    }
    .star-rating-input{
       color: #FF9931;
      font-size: 20px;
  
         padding: 10px  0;
      display: flex;
      gap: 5px; 
    }
    .review-author-line {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: #666;
      margin-bottom: 10px;
    }
    .review-author-line strong {
      color: #1a1a1a;
      font-weight: 600;
    }
    .review-date {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: #666;
    }
    .review-text {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: #555;
      line-height: 1.8;
      margin: 0;
    }

    /* View More Button */
    .review-view-more {
      padding: 30px 0 20px;
    }
    .btn-view-more {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #1a1a1a;
      background: transparent;
      border: 2px solid #C8B174;
      padding: 12px 30px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .btn-view-more:hover {
      background: #1a1a1a;
      color: #fff;
    }

    /* Related Products Section Title */
    .related-products-title {
      
      font-size: 28px;
      font-weight: 700;
      color: var(--dark, #1a1a1a);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 35px;
    }

    /* Responsive */
    @media (max-width: 991px) {
      /* .product-gallery { flex-direction: column-reverse; }
      .product-thumbnails { flex-direction: row; width: 100%; overflow-x: auto; scrollbar-width: none; } */
      .product-thumbnails::-webkit-scrollbar { display: none; }
      .product-thumbnails img { flex-shrink: 0; }
      .product-detail-info { padding-left: 0; margin-top: 25px; }
    }

    @media (max-width: 768px) {
      /* .product-main-image img { height: 320px; } */
      .product-detail-title { font-size: 18px; }
      .product-detail-price { font-size: 20px; }
      .quantity-cart-row { flex-wrap: wrap; }
      .product-tabs .nav-tabs {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }
      .product-tabs .nav-tabs::-webkit-scrollbar { display: none; }
      .product-tabs .nav-tabs .nav-link { font-size: 11px; padding: 8px 12px; white-space: nowrap; }
      /* Rating summary: stack on mobile */
      .rating-summary { flex-direction: column; gap: 20px; }
      .rating-summary-left { min-width: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 15px; }
      .rating-summary-left .rating-label:nth-child(2) { margin-top: 0; }
      .review-item { gap: 14px; }
      .review-avatar { width: 50px; height: 50px; }
      .account-content h2 {
    
    font-size: 20px;
   
    margin-bottom: 12px;
   
}
.account-content {
    padding-left: 0;
    margin-top: 0px;
}
.account-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 20px;
}
    }

    @media (max-width: 575px) {
      .product-main-image img { height: 260px; }
      .product-detail-title { font-size: 16px; }
      .product-detail-price { font-size: 18px; }
      /* Specs table → card layout on small mobile */
      .specs-table { display: block; }
      .specs-table tr { display: block; padding: 8px 0; border-bottom: 1px solid #eee; }
      .specs-table td { display: block; border-bottom: none; padding: 2px 4px; }
      .specs-table tr td:first-child {
        width: auto;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
  
        margin-bottom: 2px;
      }
      .specs-table tr td:last-child { font-size: 13px; }
      .btn-add-cart { width: 100%; text-align: center; }
      .related-products-title { font-size: 22px; margin-bottom: 25px; }
    }
    @media (max-width: 575.98px) {
      .section-padding { padding: 30px 0; }
      .auth-card { padding: 22px 12px; border-radius: 6px; }
      .auth-input { min-height: 48px; font-size: 15px; }
      .btn-gold-pill { min-height: 48px; font-size: 13px; }
      .password-toggle { top: 50%; transform: translateY(-50%); right: 12px; }

      /* Phone field: let code prefix shrink gracefully */
      .auth-form .d-flex.gap-2 { gap: 8px !important; }
      .auth-form .d-flex.gap-2 input[readonly] {
        max-width: 58px !important;
        padding-left: 8px;
        padding-right: 8px;
        font-size: 14px;
      }
      .hp-footer {
        background: #1a1a1a;
        padding: 29px 0 0;
        color: rgba(255, 255, 255, 0.8);
      }
      .product-tabs {
          margin-top: 20px;
      }
    }
    @media (max-width: 400px) {
      .auth-tabs { gap: 16px; }
      .auth-tab { font-size: 15px !important; }
    }
 .otp-section {
      padding: 60px 0 80px;
    }
    .otp-card {
      max-width: 450px;
      margin: 0 auto;
      text-align: center;
      padding: 40px 20px;
    }
    .otp-card h2 {
      
      color: #C5A047;
      font-weight: 700;
      font-size: 30px;
      letter-spacing: 3px;
      margin-bottom: 25px;
    }
    .otp-card .otp-sent-to {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: #333;
      margin-bottom: 5px;
    }
    .otp-card .otp-instruction {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: #777;
      margin-bottom: 30px;
    }
    .otp-inputs {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 25px;
    }
    .otp-inputs input {
      width: 55px;
      height: 55px;
      text-align: center;
      font-size: 22px;
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      border: 2px solid #e5e5e5;
      border-radius: 8px;
      outline: none;
      transition: border-color 0.3s;
      background: #fff;
    }
    .otp-inputs input:focus {
      border-color: #C5A047;
      box-shadow: 0 0 0 2px rgba(197, 160, 71, 0.15);
    }
    .resend-link {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: #C5A047;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.3s;
    }
    .resend-link:hover {
      color: #C5A047;
      opacity: 0.8;
      text-decoration: underline;
    }
    .otp-timer {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: #777;
      margin-top: 8px;
      margin-bottom: 30px;
    }
    .btn-verify {
      display: block;
      width: 100%;
      max-width: 350px;
      margin: 0 auto;
      padding: 14px;
      background: #C5A047;
      color: #fff;
      border: none;
      border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-verify:hover {
      background: #b08d3a;
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(197, 160, 71, 0.4);
    }
/* ============================================================
   ≤ 991px — Tablet
   ============================================================ */
@media (max-width: 991.98px) {

  /* Store: show filter toggle, make sidebar collapsible */
  .filter-toggle-btn { display: flex; }

  /* Account: sidebar → horizontal scrollable tab strip */
  .account-sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 8px 4px;
    gap: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: var(--radius-sm);
  }
  .account-sidebar::-webkit-scrollbar { display: none; }
  .account-sidebar .nav-link {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 14px;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 4px 4px 0 0;
    font-size: 13px;
  }
  .account-sidebar .nav-link.active {
    border-left-color: transparent;
    border-bottom-color: var(--primary-gold);
  }

  /* Product details: gallery stacks, thumbnails go horizontal */
  /* .product-gallery { flex-direction: column-reverse; }
  .product-thumbnails {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  } */
  .product-thumbnails::-webkit-scrollbar { display: none; }
  .product-thumbnails img { flex-shrink: 0; }
  .product-detail-info { padding-left: 0 !important; margin-top: 20px; }

  /* Page banner */
  .page-banner { padding: 60px 0; }
  .page-banner h1 { font-size: 32px; letter-spacing: 2px; }

  /* Auth tabs */
  .auth-tab, .auth-tabs a { font-size: 22px; }

  /* Contact info bar wraps on tablet */
  .contact-info-bar { gap: 25px; flex-wrap: wrap; justify-content: center; }

  /* Confirmation label */
  .order-details-table .detail-row .label { width: 120px; }
}

/* ============================================================
   ≤ 767px — Mobile Landscape / Small Tablet
   ============================================================ */
@media (max-width: 768px) {

  /* Hero: hide model image on mobile */
.about-block p {
    font-size: 14px;
}
  .hp-hero .save { font-size: 1.2rem; }

  /* Section header: stack title + tabs; tabs scroll horizontally */
  .sec-hdr { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sec-hdr h2 { font-size: 22px; line-height: 1.3; }
  .sec-hdr .cat-tabs {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 16px;
    padding-bottom: 6px;
    scrollbar-width: none;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .sec-hdr .cat-tabs::-webkit-scrollbar { display: none; }
  .sec-hdr .cat-tabs a { white-space: nowrap; font-size: 0.85rem; }

  /* Promo tall side image: hide on mobile (products fill full width) */


  /* Promo card padding */
  .promo-card { padding: 28px 22px; text-align: center; }
  .promo-card h2 { font-size: 15px; margin: 5px 0;}

  /* Product cards in 2-col grid */
  .pd-card { margin-bottom: 16px; }
  .pd-card .pd-name { font-size: 12px; }
  .pd-card .pd-price { font-size: 15px; }
  .pd-card .pd-cats { font-size: 9px; }
  .product-card { margin-bottom: 16px; }
  .product-card .product-info { padding: 10px; }
  .product-card .product-price { font-size: 1.1rem; }

  /* Store sort bar stacks */
  .sort-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sort-bar select { width: 100% !important; }
  .store-section { padding: 25px 0; }

  /* Page banner */
  .page-banner { padding: 60px 0; }
  .page-banner h1 { font-size: 26px; letter-spacing: 1.5px; }

  /* Checkout table improvements */
  .order-table .product-thumb { width: 55px; height: 55px; }
  .order-table tbody td { padding: 4px 6px; font-size: 13px; }

  /* Checkout payment option */
  .payment-option { padding: 12px 14px; }
  .payment-icons i { font-size: 22px; }

  /* Auth pages */
  .auth-tab, .auth-tabs a { font-size: 20px; }
  .auth-tabs { gap: 25px; margin-bottom: 28px; }
  .auth-card { padding: 25px 15px; }

  /* Account order card */
  .order-card { padding: 18px 0; }
  .order-logo-box { width: 72px; height: 72px; min-width: 72px; }
  .order-logo-box svg { width: 30px; height: 30px; }
  .order-logo-box .logo-name { font-size: 11px; }
  .order-logo-box .logo-sub { display: none; }
  .order-info-table .oi-label { width: 85px; font-size: 12px; }
  .order-info-table td { font-size: 12px; padding: 3px 0; }
  .order-card .order-amount { font-size: 16px; margin-bottom: 10px; }
  .order-card .order-actions { flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
  .order-card .order-actions .btn { padding: 6px 12px; font-size: 11px; }
  .order-right-col { min-width: 130px; }
  .order-product-row { flex-wrap: wrap; gap: 10px; }
  .order-product-row img { width: 44px; height: 44px; }

  /* Confirmation: detail rows stack */
  .order-details-table .detail-row { flex-direction: column; gap: 3px; }
  .order-details-table .detail-row .label {
    width: 100%;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
  }
  .order-details-table .detail-row .separator { display: none; }

  /* Contact */
  .contact-info-bar { flex-direction: column; align-items: center; gap: 20px; }
  .contact-form { padding: 0 8px; }

  /* About */
  .about-block h2 { font-size: 22px; }
 

  /* Footer newsletter full width */
  .footer-subscribe .input-group { max-width: 100%; }

  /* Pagination: larger touch targets */
  .pagination-custom .page-item .page-link {
    min-width: 40px;
    min-height: 40px;
  }

  /* Color swatches: larger touch targets */
  .color-swatch { width: 32px !important; height: 32px !important; }

  /* Product tabs: horizontal scroll */
  .product-tabs .nav-tabs {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .product-tabs .nav-tabs::-webkit-scrollbar { display: none; }
  .product-tabs .nav-tabs .nav-link { white-space: nowrap; padding: 10px 18px; font-size: 12px; }

  /* Specs table: allow horizontal scroll */
  .additional-info-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Star rating: bigger for touch */
  .star-rating { font-size: 28px; }
  .star-rating-interactive { font-size: 32px; }
  .cc-c {
 
    padding: 10px !important;
   
}
.confirmation-box h2 {

    margin-bottom: 5px;
    font-size: 18px;
   
}

.confirmation-box .confirmation-text {

    margin-bottom: 13px;
        font-size: 12px;
}
.confirmation-section {
    padding: 30px 0;
}
.cc-t {
    font-family: "Syne";
    font-size: 14px;

}
.cc-card-wrapper {
    min-height: 157px;
   
}
.promo-tall {
  
    min-height: 308px;

}
.hero-slide-bg {
    min-height: 390px;
 
}
.filter-tag {
 
    font-size: 1rem;
  
}
.filter-sidebar h4 {
    font-size: 1rem;

}
.filter-group .form-check-label {
    font-size: 1rem;

}
.feat-item h6 {
    font-size: 12px;

}
.promo-tall .pt-content p {
    font-size: 13px;
  
}
.promo-section {
 
    padding: 46px 0;

}
.sale-duo-card .sd-title {
    font-size: 19px;
  
}
.sd-left .sd-text {
    padding: 14px;
    flex: 0 0 auto;
}
.sd-right .sd-text-overlay {
   
    padding: 18px 18px;
    
}
.image-wrapper {
   
    margin: 0px;
}
.otp-section {
    padding: 0;
}
.otp-card {

    padding: 40px 0px;
}
.hero-swiper .swiper-pagination {
    bottom: 0px !important;
}
}

/* ============================================================
   ≤ 575px — Mobile Portrait
   ============================================================ */
@media (max-width: 575.98px) {

  /* Hero */
    /* .hp-hero .model-img { display: none; }
  .hero-img-wrap { display: none; } */
  .hp-hero { min-height: 260px !important; }
  .hp-hero-inner, .ni-hero-inner { min-height: 260px !important; flex-wrap: wrap; }
  .hp-hero h1 .l1 { font-size: 22px !important; letter-spacing: 1px; }
  .hp-hero h1 .l2 { font-size: 20px !important; letter-spacing: 1px; }
  .hp-hero .save { font-size: 0.95rem; margin-bottom: 8px; }
  .hp-hero .shop-btn { padding: 10px 20px; font-size: 11px; }
  .hero-slide-bg { min-height: 200px; }
  .hero-slide-bg h1 { font-size: 32px; }
  .cc-t {
    font-family: "Syne";
    font-size: 15px !important;
 
}
.hero-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
   
}
.cc-bg-img {

    object-position: center 3%;
}

.hero-swiper .swiper-pagination {
    bottom: 10px !important;
}
.hp-hero .model-img img {
    max-height: 190px !important;
}
.about-block p {
    font-size: 14px;
}
.sale-duo-card img {
  
    min-height: 220px;
    transition: 0.5s;
}
.sale-duo-card .sd-title {
    font-size: 14px;
    margin: 0;
}

.footer-img img {

    max-width: 100px;
    max-height: 100px;
}

  /* Page banner */
  .page-banner { padding: 50px 0; }
  .page-banner h1 { font-size: 20px; letter-spacing: 1px; }
  .page-banner .breadcrumb-item, .page-banner .breadcrumb-item a { font-size: 11px; }

  /* Section titles */
  .section-title { font-size: 18px; }
  .sec-hdr h2 { font-size: 18px !important; }

  /* Promo card */
  .promo-card { padding: 22px 16px; }
  .promo-card h2 { font-size: 20px; }

  /* Product card text */
  .product-card .product-name { font-size: 12px; }
  .product-card .product-price { font-size: 1rem; }
  .pd-card .pd-name { font-size: 11px; }
  .pd-card .pd-price { font-size: 13px; }

  /* Auth */
  .auth-tab, .auth-tabs a { font-size: 18px; }
  .auth-tabs { gap: 20px; margin-bottom: 22px; }
  .auth-card { max-width: 100%; padding: 20px 10px; }
  .auth-form { max-width: 100%; }
  .auth-input { padding: 12px 14px; }

  /* OTP */
  .otp-inputs { gap: 8px; }
  .otp-inputs input { width: 48px; height: 48px; font-size: 18px; }
  .otp-section h2 { font-size: 22px; margin-bottom: 10px; }

  /* Account content */
  .account-content h2 { font-size: 17px; }
  .account-content h3 { font-size: 17px; }
  .account-sidebar .nav-link { padding: 8px 10px; font-size: 12px; }
  .order-card { padding: 16px 0; }
  .order-logo-box { width: 60px; height: 60px; min-width: 60px; }
  .order-logo-box svg { width: 24px; height: 24px; }
  .order-logo-box .logo-name { font-size: 10px; }
  .order-card .order-actions .btn { font-size: 11px; padding: 5px 10px; }
  .order-card .order-amount { font-size: 15px; }

  /* Checkout */
  .checkout-section-title { font-size: 17px; }
  .qty-selector button { width: 26px; height: 26px; }
  .qty-selector input { width: 30px; height: 26px; font-size: 12px; }
  .cart-totals { padding: 14px 16px; }
  .cart-totals .totals-row { font-size: 13px; }
.account-section {
    padding: 35px 0 35px;
}
  /* Confirmation */
  .confirmation-section h2 { font-size: 18px; }
  .order-details-table .detail-row { padding: 8px 0; font-size: 13px; }

  /* About */
  .about-block { padding: 22px 0; }
  .about-block h2 { font-size: 20px; }
  .about-block img { height: 180px; }

  /* Sale banners */
  .sale-banner { height: 200px; }
  .sale-banner .sale-content { padding: 20px 18px; }
.order-details .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 0;
}
.hero-img-wrap .model-img {
    position: absolute;
    z-index: 2;
    /* text-align: right; */
    height: 100%;
    bottom: 177px;
}
  /* Footer */
  .footer-bottom { font-size: 11px; }
  .footer-subscribe .input-group { flex-wrap: nowrap; }

  /* Navbar icons */
  .nav-gap { gap: 14px !important; }
  .navbar-icons { gap: 10px; }
  .back-to-top { bottom: 20px; right: 14px; width: 38px; height: 38px; font-size: 14px; }

  /* Filter tags */
  .filter-tag { padding: 5px 12px; font-size: 11px; }
  .filter-tags { gap: 6px; }

  /* Features bar */
  .feat-item h6 { font-size: 14px; }
  .feat-item p { font-size: 12px; }

  /* Specs table → stacked card layout */
  .additional-info-table tbody tr { display: block; padding: 8px 0; border-bottom: 1px solid var(--border-color); }
  .additional-info-table tbody tr td { display: block; border-bottom: none; padding: 2px 0; width: auto !important; }
  .additional-info-table tbody tr td:first-child {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 2px;
  }

  /* Product tabs */
  .product-tabs .nav-tabs .nav-link { padding: 8px 12px; font-size: 11px; letter-spacing: 0; }

  /* Top bar on mobile */
  .hp-topbar .ship-text { font-size: 13px !important; }
  .hp-topbar .tr a { font-size: 13px !important; }
  .dropdown .dropdown-toggle { font-size: 13px !important; }
  .cc-t {
    font-family: "Syne";
    font-size: 15px !important;
 
}
.hero-swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
   
}
.cc-bg-img {

    object-position: center 3%;
}

.hero-swiper .swiper-pagination {
    bottom: 10px !important;
}
.hp-hero .model-img img {
    max-height: 190px !important;
}
.about-block p {
    font-size: 14px;
}
.sale-duo-card img {
  
    min-height: 220px;
    transition: 0.5s;
}
.sale-duo-card .sd-title {
    font-size: 14px;
    margin: 0;
}

.footer-img img {

    max-width: 100px;
    max-height: 100px;
}
.specs-table tr td {
    padding: 5px 13px;
}
.product-card .product-image {
    width: 100%;
    height: 100%;
    max-height: 250px;
}
.promo-section {
    padding: 15px 0;
}       
.ni-img img {
    max-height: 50px;
    max-width: 50px;
}
}

/* ============================================================
   ≤ 480px — Small Mobile (iPhone SE, older Android)
   ============================================================ */
@media (max-width: 480px) {

  /* Hero */
  .hp-hero { min-height: 220px !important; }
  .hp-hero-inner, .ni-hero-inner { min-height: 220px !important; }
  .hp-hero h1 .l1 { font-size: 18px !important; }
  .hp-hero h1 .l2 { font-size: 17px !important; }
  .hp-hero .save { font-size: 0.85rem; margin-bottom: 6px; }
  .hp-hero .shop-btn { padding: 8px 16px; font-size: 10px; margin-top: 10px !important; }

  /* Page banner */
  .page-banner { padding: 50px 0; }
  .page-banner h1 { font-size: 17px; }
.product-detail-info h1 {
    font-family: var(--font-heading);
    font-size: 17px;
 
}
.rating-summary {

    padding: 30px 15px;

}
.reviews-section {
    padding: 0px 0 10px;
}
.sale-duo-card .sd-title {
    font-size: 18px;

}
.sd-left .sd-text {
    padding: 14px;
    flex: 0 0 auto;
}
.sd-right .sd-text-overlay {
 
    padding: 17px 15px;
 
}
  /* Auth */
  .auth-tab, .auth-tabs a { font-size: 16px; }

  /* OTP */
  .otp-inputs input { width: 42px; height: 42px; font-size: 16px; }

  /* Sort bar */
  .sort-bar span { font-size: 0.85rem !important; }

  /* Checkout totals */
  .cart-totals .totals-row { font-size: 12px; padding: 7px 0; }
  .cart-totals .totals-row.total { font-size: 14px; }

  /* Buttons */
  .btn-gold, .btn-gold-outline, .btn-dark { padding: 9px 22px; font-size: 12px; }

  /* Account sidebar */
  .account-sidebar { padding: 5px 3px; }
  .account-sidebar .nav-link { padding: 7px 9px; font-size: 11px; }

  /* Modal */
  .modal-custom .modal-body { padding: 10px 16px 18px; }
  .modal-custom .modal-header { padding: 16px 16px 8px; }
  .modal-custom .modal-header h5 { font-size: 16px; }
  .feedback-stars { font-size: 24px; gap: 6px; }

  /* Section padding */
  .section-padding { padding: 24px 0; }
}