/* ============================================================
   LUXURY MEN'S FASHION — REDESIGN OVERRIDES
   Brand: R&M Boutique
   Palette: Dark Navy #101820 | Cream #F7F4ED | Gold #B89B5E
   Typography: Playfair Display (headings) | Inter (body)
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand Colors */
  --navy: #101820;
  --navy-light: #1a2a3a;
  --cream: #F7F4ED;
  --cream-dark: #EDE8DD;
  --gold: #B89B5E;
  --gold-light: #D4BC8A;
  --gold-dark: #9A7F4A;
  --white: #FFFFFF;
  --light-gray: #D9D9D9;
  --text-dark: #101820;
  --text-body: #3D3D3D;
  --text-muted: #8A8A8A;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-gap: 100px;
  --section-gap-mobile: 60px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

/* ===== GLOBAL RESETS & BASE ===== */
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: 56px; line-height: 1.15; }
h2 { font-size: 40px; line-height: 1.2; }
h3 { font-size: 28px; line-height: 1.3; }
h4 { font-size: 20px; line-height: 1.4; }

p {
  color: var(--text-body);
  line-height: 1.8;
}

a {
  color: var(--navy);
  transition: var(--transition-fast);
}
a:hover {
  color: var(--gold);
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ===== UTILITY OVERRIDES ===== */
.container {
  max-width: 1200px;
}

.mb-100 {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .mb-100 {
    margin-bottom: 50px;
  }
}

/* ===== SECTION TITLES ===== */
.section_title {
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.section_title::before,
.section_title::after {
  display: none !important;
}
.section_title h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section_title h2 span {
  font-weight: 400;
  color: var(--gold);
}
.section_title p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Add gold divider under section titles */
.section_title {
  position: relative;
}
.section_title::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 2px !important;
  background: var(--gold) !important;
  margin-left: 0 !important;
}

/* ===== COLOR FOUR OVERRIDES (Red → Gold) ===== */
.color_four .main_menu nav > ul > li:hover > a {
  border-color: var(--gold);
  color: var(--gold);
}
.color_four .main_menu nav > ul > li > a.active {
  border-color: var(--gold);
  color: var(--gold);
}
.color_four .main_menu nav > ul > li ul.sub_menu li a:hover {
  color: var(--gold);
}
.color_four .mega_menu_inner > li > a:hover {
  color: var(--gold);
}
.color_four .mega_menu_inner > li ul li a:hover {
  color: var(--gold);
}
.color_four .header_account-list > a:hover {
  color: var(--gold);
}
.color_four .mini_cart_wrapper span.item_count {
  background: var(--gold);
}
.color_four .cart_info a:hover {
  color: var(--gold);
}
.color_four .cart_remove a:hover {
  color: var(--gold);
}
.color_four .cart_img:hover {
  border-color: var(--gold);
}
.color_four .cart_button a:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.color_four .dropdown_links_list ul li a:hover {
  color: var(--gold);
}
.color_four .search_close_btn a:hover {
  color: var(--gold);
}
.color_four .dropdown_search form button:hover {
  color: var(--gold);
}
.color_four .price_box span.current_price {
  color: var(--gold) !important;
}
.color_four .product_rating ul li a {
  color: var(--gold) !important;
}
.color_four .product_content h4 a:hover {
  color: var(--gold) !important;
}
.color_four .add_to_cart a:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.color_four .product_carousel .owl-nav div:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.color_four .product_tab_btn ul li a:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.color_four .product_tab_btn ul li a.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.color_four .label_product span.label_sale {
  background: var(--gold) !important;
}
.color_four .footer_bottom {
  background: var(--navy) !important;
  border-top: none !important;
}

/* ===== HEADER & NAVIGATION ===== */
.main_header {
  background: var(--cream) !important;
  padding: 6px 60px !important;
  border-bottom: 1px solid rgba(184, 155, 94, 0.2);
}

.sticky-header.sticky {
  background: rgba(247, 244, 237, 0.97) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(16, 24, 32, 0.06);
}

.main_menu nav > ul > li > a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  padding: 5px 20px;
  border: 1px solid transparent;
  border-radius: 0;
}

.main_menu nav > ul > li > a.active {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.main_menu nav > ul > li:hover > a {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.header_account-list > a {
  font-size: 16px;
  color: var(--navy);
}

.mini_cart_wrapper span.item_count {
  background: var(--gold);
  font-size: 10px;
  width: 18px;
  height: 18px;
  line-height: 18px;
}

/* Logo refinement */
.logo img {
  max-width: 140px;
  transition: var(--transition-smooth);
}
.logo img:hover {
  opacity: 0.85;
}

/* Dropdown refinement */
.dropdown_links {
  border-radius: 0;
  border: none;
  box-shadow: 0 8px 30px rgba(16, 24, 32, 0.1);
}
.dropdown_links_list ul li a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-body);
}
.dropdown_links_list ul li a:hover {
  color: var(--gold) !important;
}

/* ===== GLOBAL RED KILL — Replace all red accents with gold ===== */
.btn.button,
.button {
  background: var(--gold) !important;
  color: var(--white) !important;
  height: 48px;
  line-height: 44px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  transition: var(--transition-smooth);
  border: 2px solid var(--gold) !important;
  box-shadow: none;
  display: inline-block;
}
.btn.button:hover,
.button:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 155, 94, 0.15);
}

/* Override any remaining red */
[class*="color_"] .header_account-list > a:hover,
.header_account-list > a:hover,
a:hover {
  color: var(--gold) !important;
}

[class*="color_"] .action_links ul li a:hover,
.action_links ul li a:hover {
  color: var(--gold) !important;
}

[class*="color_"] .offcanvas_main_menu li a:hover,
.offcanvas_main_menu li a:hover {
  color: var(--gold) !important;
}

[class*="color_"] .offcanvas_footer span a:hover,
.offcanvas_footer span a:hover {
  color: var(--gold) !important;
}

[class*="color_"] .slider_area .owl-nav div:hover,
.slider_area .owl-nav div:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

[class*="color_"] .owl-nav div:hover,
.owl-nav div:hover {
  color: var(--gold) !important;
}

/* ===== BUTTONS ===== */

/* Gold variant */
.button-gold {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}
.button-gold:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ===== PRODUCT CARDS — REDESIGNED LUXURY ===== */
.single_product.fp-card,
.single_product {
  background: var(--white);
  border: 1px solid #e8e0d8;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single_product.fp-card:hover,
.single_product:hover {
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}

/* ── Image / Link area ── */
.product-card-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
}
.product-card-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single_product.fp-card:hover .product-card-link img,
.single_product:hover .product_thumb a img {
  transform: scale(1.08);
}

/* ── Group Buy Overlay (bottom of image) ── */
.group-buy-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.92) 0%, rgba(26, 24, 22, 0.4) 60%, transparent 100%);
  padding: 28px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gb-overlay-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.gb-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gb-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid rgba(26, 24, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1;
}
.gb-avatar + .gb-avatar {
  margin-left: -8px;
}

.gb-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gb-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Content Body (below image) ── */
.product-content-body {
  padding: 20px 18px 22px;
}

.product-card-title {
  margin: 0 0 14px 0;
}
.product-card-title a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #1a1816;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  line-height: 1.3;
}
.product-card-title a:hover {
  color: var(--gold) !important;
}
.product-card-title .gb-creator {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: var(--font-body);
}

/* ── Pricing Row ── */
.product-card-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.prices-left {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.users-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-right: 2px;
}

.price-group-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price-group-label {
  font-size: 11px;
  font-weight: 500;
  color: #7a726a;
}

.prices-right {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-left: auto;
}

.price-normal-struck {
  font-size: 13px;
  color: #a09890;
  text-decoration: line-through;
}

.price-normal-flat {
  font-size: 13px;
  color: #a09890;
}

.price-normal-label {
  font-size: 10px;
  color: #a09890;
}

.price-single {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

/* ── CTA Button ── */
.product-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid #e8e0d8;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1816;
  text-decoration: none;
  transition: all 0.35s ease;
  box-sizing: border-box;
}
.product-card-cta:hover {
  background: #1a1816 !important;
  color: var(--white) !important;
  border-color: #1a1816 !important;
  text-decoration: none;
}

/* ── Group Buy Card Meta ── */
.gb-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.gb-clock-icon {
  color: var(--gold);
  font-size: 14px;
}
.gb-meta .countdown-timer {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* ── Group Buy Share Row ── */
.gb-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.gb-share-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}
.gb-share-row .social-icons a {
  color: var(--gold);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.gb-share-row .social-icons a:hover {
  color: var(--gold-dark);
}

/* Group Buy badge */
.group-badge .group-buy-icon {
  color: var(--gold) !important;
  font-size: 18px;
}
.group-buy-icon::after {
  background: linear-gradient(120deg, transparent 0%, rgba(184, 155, 94, 0.4) 50%, transparent 100%);
}

.label_product span.label_sale {
  background: var(--gold) !important;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  height: 22px;
  line-height: 22px;
  width: 50px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* ===== SECTION BACKGROUND OVERRIDES ===== */
.bg-light {
  background: var(--white) !important;
}

/* ===== HOW IT WORKS SECTION ===== */
/* Step cards */
.card {
  border: none !important;
  border-radius: 8px !important;
  background: var(--white) !important;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 15px rgba(16, 24, 32, 0.04) !important;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.08) !important;
}
.card-body h5 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}
.card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Step number circles */
.rounded-circle.bg-primary,
.rounded-circle.bg-success,
.rounded-circle.bg-warning,
.rounded-circle.bg-info {
  background: var(--navy) !important;
  font-family: var(--font-heading);
  font-size: 1.3rem !important;
  width: 55px !important;
  height: 55px !important;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  background: transparent !important;
}

/* ===== GROUP BUY SECTION ===== */
.group-buys .single_product {
  border: 1px solid var(--cream-dark);
}
.group-buys .single_product:hover {
  border-color: var(--gold);
}

.group-buys .countdown-timer {
  color: var(--gold) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
}

.product_thumb .group-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
}

.share-desc {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.social-icons a {
  color: var(--gold);
  font-size: 13px;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial_area {
  background: var(--white) !important;
  padding: 80px 0;
}

.single-testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial_thumb img {
  max-width: 100px;
  margin-bottom: 25px;
}

.testimonial_content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 25px;
}

.testimonial_content p strong {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 400;
}

.testimonial-rating ul li a {
  color: var(--gold) !important;
  font-size: 14px;
}

.testimonial_author a {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gold);
  font-style: italic;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter_area_start {
  background: var(--navy) !important;
  padding: 80px 0;
}

.newsletter_area_start .section_title h2 {
  color: var(--white);
}
.newsletter_area_start .section_title h2 span {
  color: var(--gold);
}
.newsletter_area_start .section_title p {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter_area_start .section_title::after {
  background: var(--gold) !important;
}

.subscribe_form input {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-body);
}
.subscribe_form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe_form form {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.subscribe_form form input {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 140px 0 20px;
  color: var(--white);
  border-radius: 0;
  transition: var(--transition-fast);
}
.subscribe_form form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.subscribe_form form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.subscribe_form form button:hover {
  background: var(--gold-dark);
}

.email_icon {
  display: none;
}

/* ===== FOOTER ===== */
.footer_widgets {
  background: var(--navy) !important;
}

.footer_top {
  padding: 70px 0 50px;
  background: var(--navy) !important;
}

.footer_top .widgets_container > h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  font-weight: 400;
}

.footer_top .widgets_container > p,
.footer_top .widgets_container > p a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 28px;
}
.footer_top .widgets_container > p a:hover {
  color: var(--gold);
}

.footer_top .widgets_container > p i {
  color: var(--gold);
  margin-right: 10px;
}

.footer_menu ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: var(--font-body);
  line-height: 32px;
}
.footer_menu ul li a:hover {
  color: var(--gold);
}

.footer_bottom {
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 22px 0;
  border-top: 1px solid rgba(184, 155, 94, 0.15) !important;
}

.copyright_area p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.5px;
}
.copyright_area p a {
  color: var(--gold);
}
.copyright_area p a:hover {
  color: var(--gold-light);
}
.copyright_area p b {
  color: rgba(255, 255, 255, 0.7);
}

.footer_social ul a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  margin-left: 18px;
  transition: var(--transition-fast);
}
.footer_social ul a:hover {
  color: var(--gold) !important;
  transform: translateY(-2px);
}

/* Footer logo */
.footer_contact .logo img {
  max-width: 160px;
  filter: brightness(0) invert(1);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs_area {
  background: var(--cream-dark);
  padding: 25px 0;
}
.breadcrumb_content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 5px;
}
.breadcrumb_content ul li {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb_content ul li a {
  color: var(--text-muted);
}
.breadcrumb_content ul li a:hover {
  color: var(--gold);
}

/* ===== SHOP PAGE ===== */
.shop_area {
  background: var(--cream);
}

/* ===== SLIDER OVERRIDES (base — fully redesigned in slider.blade.php) ===== */
.slider_section.slider_s_four {
  margin-bottom: 0 !important;
}
.slider_s_four .single_slider {
  position: relative;
  height: 85vh;
  min-height: 550px;
  display: flex;
  align-items: center;
}
.slider_s_four .single_slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,24,32,0.65) 0%, rgba(16,24,32,0.25) 100%);
  z-index: 1;
}

.slider_c_four {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 750px;
  margin: 0 auto;
}
.slider_c_four h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 20px;
}
.slider_c_four h3::before {
  display: none !important;
}
.slider_c_four h1 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white) !important;
  margin-bottom: 18px;
}
.slider_c_four h1 span {
  color: var(--gold);
}
.slider_c_four p {
  font-size: 16px;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 300;
  margin-bottom: 30px;
}
.slider_c_four a.button {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
  padding: 0 36px;
  height: 50px;
  line-height: 46px;
  font-size: 12px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.slider_c_four a.button:hover {
  background: transparent !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Gold accent line above slider heading */
.slider_c_four .gold-accent {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 25px;
}

/* Slider navigation arrows */
.slider_s_four .slider_area .owl-nav div {
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}
.slider_s_four .slider_area .owl-nav div:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Slider dots */
.slider_area .owl-dots .owl-dot.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.slider_area .owl-dots .owl-dot {
  background: rgba(255,255,255,0.4) !important;
}

/* ===== PREMIUM ANIMATIONS ===== */
/* Fade-in up animation for content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth image loading */
img {
  transition: opacity 0.5s ease;
}
img[data-src] {
  opacity: 0;
}
img.loaded {
  opacity: 1;
}

/* Product card entrance animation */
.single_product {
  animation: fadeInUp 0.6s ease forwards;
}

/* Section entrance animation */
.product_area,
.testimonial_area,
.newsletter_area_start,
.footer_widgets,
.bg-light {
  animation: fadeInUp 0.7s ease forwards;
}

/* Hover lift effect for interactive elements */
.main_menu nav > ul > li > a,
.header_account-list > a,
.social-icons a {
  transition: var(--transition-fast);
}

/* Gold shimmer on group buy badge */
.group-badge {
  position: relative;
  overflow: hidden;
}

/* Smooth header transition */
.sticky-header {
  transition: background 0.4s ease, box-shadow 0.4s ease !important;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product_details {
  background: var(--cream);
}
.product_d_info {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(16, 24, 32, 0.04);
}

/* Anchor for try-on overlay button */
#img-1 {
  position: relative;
}

/* ===== TRY-ON OVERLAY BUTTON (on product image) ===== */
.tryon-overlay-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(16, 24, 32, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.tryon-overlay-btn:hover {
  background: rgba(16, 24, 32, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%) scale(1.03);
}
.tryon-overlay-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: translateX(-50%) scale(1);
}

/* Magic wand icon with subtle pulse animation */
.tryon-wand-icon {
  flex-shrink: 0;
  animation: tryonWandPulse 3s ease-in-out infinite;
}

@keyframes tryonWandPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.tryon-overlay-label {
  line-height: 1;
}

/* Smaller on mobile inside sticky bar — keep original style there */
.mobile-sticky-bar .tryon-overlay-btn {
  position: static;
  transform: none;
  background: var(--cream-dark);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 12px;
  flex: 1;
  justify-content: center;
  backdrop-filter: none;
}
.mobile-sticky-bar .tryon-overlay-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: none;
}
.mobile-sticky-bar .tryon-wand-icon {
  animation: none;
}

/* ===== TRY-ON MODAL OVERLAY ===== */
.tryon-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 24, 32, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tryon-modal {
  background: var(--white);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(16, 24, 32, 0.2);
  animation: tryonSlideUp 0.3s ease;
}

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

.tryon-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.tryon-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin: 0;
}

.tryon-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: var(--transition-fast);
}
.tryon-close-btn:hover {
  color: var(--navy);
}

.tryon-modal-body {
  padding: 24px;
}

/* Upload section */
.tryon-upload-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tryon-upload-zone {
  width: 100%;
  border: 2px dashed var(--cream-dark);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.tryon-upload-zone:hover,
.tryon-dragover {
  border-color: var(--gold);
  background: rgba(184, 155, 94, 0.04);
}

.tryon-pose-img {
  max-width: 160px;
  height: auto;
  opacity: 0.6;
  margin-bottom: 4px;
  pointer-events: none;
}
.tryon-upload-zone:hover,
.tryon-dragover {
  border-color: var(--gold);
  background: rgba(184, 155, 94, 0.04);
}

.tryon-file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.tryon-upload-icon {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tryon-upload-text {
  font-size: 15px;
  color: var(--navy);
  margin: 0;
}
.tryon-upload-text strong {
  color: var(--gold);
}

.tryon-upload-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.tryon-preview {
  position: relative;
  width: 200px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--cream-dark);
}
.tryon-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tryon-remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.tryon-remove-btn:hover {
  background: var(--gold);
}

.tryon-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 0;
}
.tryon-submit-btn:hover {
  background: transparent;
  color: var(--gold);
}
.tryon-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Processing section */
.tryon-processing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 20px;
}

.tryon-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--cream-dark);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: tryonSpin 0.8s linear infinite;
}

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

.tryon-processing-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.tryon-processing-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.tryon-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}

.tryon-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.tryon-cancel-btn {
  background: none;
  border: 1px solid var(--cream-dark);
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tryon-cancel-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* Comparison section */
.tryon-comparison-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tryon-comparison {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tryon-comp-item {
  flex: 1;
  text-align: center;
}

.tryon-comp-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.tryon-comp-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
}

.tryon-comp-divider {
  color: var(--gold);
  flex-shrink: 0;
}

/* Action buttons */
.tryon-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tryon-action-btn {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  border-radius: 0;
}
.tryon-action-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.tryon-action-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.tryon-action-primary:hover {
  background: transparent;
  color: var(--gold);
}

/* Failed section */
.tryon-failed-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
}

.tryon-failed-icon {
  color: var(--text-muted);
}

.tryon-failed-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.tryon-error {
  color: #d32f2f;
  font-size: 13px;
  margin: 0;
}

.tryon-error-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

/* Modal fade transition */
.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity 0.25s ease;
}
.modal-fade-enter,
.modal-fade-leave-to {
  opacity: 0;
}

/* Fullscreen on mobile/small tablets */
@media (max-width: 768px) {
  .tryon-modal-overlay {
    padding: 0;
    align-items: flex-end;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .tryon-modal {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 16px 16px 0 0;
    animation: tryonSlideUp 0.35s ease;
  }
  .tryon-modal-body {
    padding: 16px;
  }
  .tryon-upload-zone {
    padding: 24px 16px;
  }
  .tryon-comparison {
    flex-direction: column;
    gap: 16px;
  }
  .tryon-comp-divider {
    transform: rotate(90deg);
  }
  .tryon-comp-img {
    max-width: 200px;
    margin: 0 auto;
  }
  .tryon-actions {
    flex-direction: column;
  }
  .tryon-action-btn {
    min-width: auto;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-form-area {
  background: var(--cream);
}

/* ===== ANNOUNCEMENT BAR ===== */
.text_content_store4 {
  background: var(--navy) !important;
  padding: 8px 0;
  position: relative;
  z-index: 1;
}
.text_content_store4 p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin: 0;
}
.text_content_store4 p i {
  color: var(--gold);
}
.text_content_store4 p a {
  color: var(--gold) !important;
}

/* Mobile: merge logo header + cart/hamburger into one row */
@media (max-width: 767px) {
  .main_header {
    display: block !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(184, 155, 94, 0.2);
  }
  .main_header .header_container > .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  /* Logo column: take remaining space */
  .main_header [class*="col-lg-2"]:first-child {
    flex: 1;
    max-width: none;
    text-align: left !important;
    padding: 8px 0 8px 15px;
  }
  .main_header .logo img {
    max-width: 100px;
  }
  /* Hide desktop nav, search, account area on mobile */
  .main_header .main_menu,
  .main_header [class*="col-lg-8"],
  .main_header [class*="col-lg-2"]:not(:first-child) {
    display: none !important;
  }
  /* Move offcanvas_menu cart+hamburger into the same row as logo */
  .offcanvas_menu {
    display: block !important;
    width: auto;
    flex-shrink: 0;
  }
  .offcanvas_menu .container,
  .offcanvas_menu .row,
  .offcanvas_menu [class*="col-"] {
    padding: 0;
    margin: 0;
    width: auto;
  }
  .canvas_open {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 8px 15px 8px 0;
  }
  .canvas_open .mini_cart_wrapper a {
    font-size: 18px;
    color: var(--navy);
  }
  .canvas_open .mini_cart_wrapper .item_count {
    background: var(--gold);
    font-size: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
  }
  .canvas_open > a:last-child {
    font-size: 24px;
    color: var(--navy);
  }
}



/* ===== CART PAGE ===== */
.cart-table-area {
  background: var(--cream);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .section_title h2 {
    font-size: 28px;
  }
  .slider_s_four .single_slider {
    height: 60vh;
    min-height: 400px;
  }
  .slider_c_four h1 {
    font-size: 38px;
  }
  .slider_c_four h3 {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .main_header {
    padding: 6px 20px !important;
  }
  .footer_top {
    padding: 50px 0 20px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .section_title h2 {
    font-size: 22px;
  }
  .slider_s_four .single_slider {
    height: 70vh;
    min-height: 350px;
  }
  .slider_c_four {
    padding: 20px;
  }
  .slider_c_four h1 {
    font-size: 28px;
  }
  .slider_c_four h3 {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .slider_c_four .gold-accent {
    width: 40px;
    margin-bottom: 15px;
  }
  .single_product {
    border-radius: 6px;
  }
  .product_content {
    padding: 14px 12px 25px;
  }
  .testimonial_area {
    padding: 50px 0;
  }
  .newsletter_area_start {
    padding: 50px 0;
  }
  .subscribe_form form input {
    padding: 0 20px;
    height: 46px;
  }
  .subscribe_form form button {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 10px;
    width: 100%;
    height: 44px;
  }
}

@media (max-width: 575px) {
  .slider_s_four .single_slider {
    height: 60vh;
    min-height: 300px;
  }
  .slider_c_four h1 {
    font-size: 24px;
  }
}
