/* 
 * KINAKATA — Premium Brand Theme
 * Color Palette: #0A1128 (Navy) × #FF5E36 (Vivid Orange)
 */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  /* Core Brand Colors */
  --color-black:        #0A1128;           /* Navy — primary dark */
  --color-black-light:  #1C2541;           /* Lighter navy */
  --color-white:        #FFFFFF;
  --color-bg:           #F7F9FC;           /* Cool white with navy tint */
  --color-bg-dark:      #EBF0F8;           /* Soft navy-tinted grey */
  --color-gold:         #FF5E36;           /* Brand orange — accent */
  --color-gold-hover:   #E0401B;           /* Darker orange on hover */
  --color-gold-light:   rgba(254, 120, 5, 0.1);
  --color-muted:        #6B7A8E;           /* Blue-grey muted */
  --color-border:       rgba(10, 17, 40, 0.08);
  --color-border-dark:  rgba(10, 17, 40, 0.2);
  --color-success:      #1a7a4a;
  --color-error:        #C0392B;
  --color-overlay:      rgba(10, 30, 60, 0.75);

  /* Premium Gradients */
  --gradient-brand:     linear-gradient(135deg, #0A1128 0%, #1D2440 100%);
  --gradient-accent:    linear-gradient(135deg, #FF5E36 0%, #FFA000 100%);
  --gradient-hero:      linear-gradient(160deg, #050B1A 0%, #0A1128 50%, #1D2440 100%);

  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Hind Siliguri', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --header-height: 80px;
  --header-height-shrink: 65px;
  --max-width: 1400px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  --box-shadow-subtle: 0 4px 30px rgba(10, 17, 40, 0.06);
  --box-shadow-luxe:   0 15px 40px rgba(10, 17, 40, 0.12);
  --box-shadow-orange: 0 8px 25px rgba(255, 94, 54, 0.35);
  --glass-backdrop: blur(12px) saturate(180%);
  --glass-bg: rgba(247, 249, 252, 0.88);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-black);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-black);
  font-weight: 500;
  line-height: 1.25;
}

p {
  color: var(--color-black);
  opacity: 0.85;
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-hover);
}

/* --- UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section-padding {
  padding: 100px 0;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
}
.section-title p {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 15px rgba(2, 61, 119, 0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 1;
}
.btn-primary:hover::before {
  transform: translateY(0);
}
.btn-primary span {
  position: relative;
  z-index: 2;
}
.btn-primary:hover {
  box-shadow: var(--box-shadow-orange);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-black);
  border: 1.5px solid var(--color-black);
}
.btn-secondary:hover {
  background: var(--gradient-brand);
  color: var(--color-white);
  border-color: transparent;
}

.btn-gold {
  background: var(--gradient-accent);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 15px rgba(254, 120, 5, 0.3);
}
.btn-gold:hover {
  background: var(--gradient-brand);
  box-shadow: 0 4px 15px rgba(2, 61, 119, 0.3);
}

.btn-text {
  padding: 5px 0;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black);
  position: relative;
}
.btn-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: var(--transition-smooth);
}
.btn-text:hover::after {
  transform: scaleX(1);
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(2, 30, 60, 0.6) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: var(--header-height-shrink);
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1.5px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(2, 61, 119, 0.1);
}

header.scrolled .logo, 
header.scrolled .nav-links > li > a,
header.scrolled .header-icons a {
  color: var(--color-black);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-black); /* Will toggle in hero dynamic header */
  transition: var(--transition-smooth);
}

.logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black);
  padding: 10px 0;
  display: block;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.nav-links > li:hover > a::after {
  transform: scaleX(1);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 800px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--box-shadow-luxe);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 101;
}

.nav-links > li:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-column h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--color-black);
}

.mega-column ul li {
  margin-bottom: 12px;
}

.mega-column ul li a {
  font-size: 13px;
  color: var(--color-muted);
}

.mega-column ul li a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.mega-promo-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
  border-radius: 0;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-icons a {
  color: var(--color-black);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  line-height: 1;
}

.header-icons a svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.header-icons a:hover {
  color: var(--color-gold);
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  line-height: 1;
}

.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* --- OVERLAYS & SLIDEOUT DRAWER --- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay);
  backdrop-filter: blur(5px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  height: 100%;
  background-color: var(--color-white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 30px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.close-btn {
  font-size: 24px;
  color: var(--color-black);
  transition: var(--transition-fast);
}
.close-btn:hover {
  color: var(--color-gold);
}

.cart-drawer-items {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.drawer-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-item-img {
  width: 80px;
  height: 90px;
  object-fit: cover;
  background-color: var(--color-bg);
}

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

.drawer-item-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.drawer-item-meta {
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.drawer-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  width: fit-content;
}

.drawer-item-qty button {
  padding: 4px 10px;
  font-size: 12px;
}

.drawer-item-qty span {
  padding: 0 10px;
  font-size: 12px;
}

.drawer-item-price-remove {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.drawer-item-remove {
  font-size: 12px;
  color: var(--color-muted);
  text-decoration: underline;
}
.drawer-item-remove:hover {
  color: var(--color-error);
}

.cart-drawer-footer {
  padding: 30px;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg);
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 16px;
}

.cart-drawer-subtotal span:last-child {
  font-weight: 600;
  font-size: 18px;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer-actions .btn {
  width: 100%;
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--color-white);
  z-index: 1000;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav-links a:hover {
  color: var(--color-gold);
}

/* Sliding Search Overlay — full screen takeover */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  padding: 40px 0 60px;
}

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

.search-container {
  max-width: 700px;
  margin: 60px auto 0; /* Push input down so close button has clear space */
  position: relative;
  padding: 0 20px;
}

/* Close button positioned absolutely in top-right of overlay screen */
.search-overlay .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  line-height: 1;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-fast);
  z-index: 10001;
}

.search-overlay .close-btn:hover {
  color: var(--color-gold);
  background: var(--color-gold-light);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-black);
  padding-bottom: 12px;
  margin-bottom: 5px;
}

.search-input-wrapper input {
  flex: 1;
  font-size: 20px;
  font-family: var(--font-body);
  color: var(--color-black);
  background: transparent;
  border: none;
  outline: none;
}

.search-input-wrapper input::placeholder {
  color: var(--color-muted);
  font-size: 18px;
}

.search-input-wrapper .search-btn {
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  padding: 4px;
}

.search-suggestions {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 575px) {
  .search-suggestions {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.suggestion-products h4, .suggestion-queries h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-bottom: 15px;
  font-weight: 700;
}

.suggested-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.suggested-item:hover {
  background-color: var(--color-bg);
}

.suggested-item-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background-color: var(--color-bg);
  border-radius: 6px;
  flex-shrink: 0;
}

.suggested-item-info h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.suggested-item-info p {
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 600;
}

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

.suggested-queries ul li {
  margin-bottom: 8px;
}

.suggested-queries ul li a {
  font-size: 14px;
  color: var(--color-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.suggested-queries ul li a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

/* --- PRODUCT CARD --- */
.product-card {
  background-color: var(--color-white);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-image-container {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.product-image-container img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge-tag {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}

.badge-tag.sale {
  background-color: var(--color-gold);
}

.prod-btn-global {
  margin: 10px;
  background: #0A1128;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 5px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Hind Siliguri', sans-serif;
  cursor: pointer;
  width: calc(100% - 20px);
  transition: background 0.2s;
  display: block;
  text-align: center;
}
.prod-btn-global:hover {
  background: #FF5E36;
}

.product-info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.product-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}

.product-rating {
  font-size: 11px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-price-wrapper {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.product-old-price {
  text-decoration: line-through;
  color: var(--color-muted);
  font-weight: 400;
}

.product-price {
  color: var(--color-black);
}

/* --- FOOTER --- */
footer {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: 80px 0 30px;
  border-top: 3px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

.footer-logo span {
  color: var(--color-gold);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 14px;
}

.social-links a:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  color: var(--color-white);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.payment-gateways {
  display: flex;
  gap: 10px;
  font-size: 22px;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-gold);
  box-shadow: var(--box-shadow-luxe);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(120%);
  animation: slideIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  min-width: 300px;
}

.toast.success {
  border-left-color: var(--color-success);
}

.toast.error {
  border-left-color: var(--color-error);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 14px;
}

.toast-msg {
  font-size: 12px;
  color: var(--color-muted);
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

/* --- TRUST BADGES --- */
.trust-badges-section {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
  background-color: var(--color-white);
}

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

.badge-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.badge-icon {
  font-size: 28px;
  color: var(--color-gold);
}

.badge-item h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-item p {
  font-size: 12px;
  color: var(--color-muted);
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
  background-color: var(--color-bg-dark);
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.newsletter-content p {
  color: var(--color-muted);
  margin-bottom: 35px;
}

.newsletter-form {
  display: flex;
  border-bottom: 2px solid var(--color-black);
  padding-bottom: 5px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 0;
  font-size: 15px;
}

.newsletter-form button {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 11px;
  padding: 10px 20px;
  color: var(--color-black);
  transition: var(--transition-fast);
}
.newsletter-form button:hover {
  color: var(--color-gold);
}

/* --- LIVE CHAT PLACEHOLDER --- */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 800;
}

.live-chat-trigger {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
  position: relative;
}

.live-chat-trigger:hover {
  background-color: var(--color-gold);
  transform: translateY(-5px);
}

.chat-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  animation: pulse 2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.live-chat-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  height: 400px;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-luxe);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.live-chat-box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-box-header {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-box-header h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.chat-box-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 13px;
  background-color: var(--color-bg);
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 4px;
}

.chat-msg.agent {
  background-color: var(--color-white);
  align-self: flex-start;
  border-bottom-left-radius: 0;
  border: 1px solid var(--color-border);
}

.chat-msg.user {
  background-color: var(--color-black);
  color: var(--color-white);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.chat-box-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 10px;
}

.chat-box-footer input {
  flex: 1;
  font-size: 13px;
}

.chat-box-footer button {
  color: var(--color-gold);
  font-weight: 600;
}
.chat-box-footer button:hover {
  color: var(--color-gold-hover);
}

/* --- SKELETON PRELOADER FOR IMAGES --- */
.loading-skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%) !important;
  background-size: 200% 100% !important;
  animation: shimmer-pulse 1.5s infinite linear !important;
}

@keyframes shimmer-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.prod-btn-global {
  margin: 10px;
  background-color: #0A1128 !important;
  color: #fff !important;
  border: none;
  border-radius: 5px;
  padding: 10px 5px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Hind Siliguri', sans-serif;
  cursor: pointer;
  width: calc(100% - 20px);
  transition: background-color 0.2s;
  display: block;
  text-align: center;
}

.prod-btn-global:hover {
  background-color: #FF5E36 !important;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* ═══ GLOBAL PROD CARD (Copied from Homepage) ═══ */
.prod-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s;
  height: 100%;
}
.prod-card:hover { box-shadow: 0 3px 15px rgba(0,0,0,0.07); }
.prod-img-box {
  width: 100%; aspect-ratio: 1 / 1;
  background: #f7f7f7;
  overflow: hidden; position: relative;
  flex-shrink: 0;
}
.prod-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.prod-card:hover .prod-img-box img { transform: scale(1.04); }
.prod-badge {
  position: absolute; top: 5px; left: 5px;
  background: #FF5E36; color: #fff;
  font-size: 8.5px; font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
  font-family: 'Hind Siliguri', sans-serif;
  z-index: 2;
}
.prod-badge.nbadge { background: #0A1128; top: 5px; right: 5px; left: auto; }
.prod-badge.tbadge { background: #003366; top: 5px; right: 5px; left: auto; }

.prod-info {
  padding: 7px 8px 5px;
  flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.prod-title {
  font-size: 11.5px; font-weight: 600; color: #1a1a1a;
  line-height: 1.3;
  height: 2.6em;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  font-family: 'Hind Siliguri', sans-serif;
}
.prod-stars { font-size: 9.5px; color: #f5a623; margin-bottom: 2px; }
.prod-price {
  font-size: 13px; font-weight: 700; color: #0A1128;
  font-family: 'Hind Siliguri', sans-serif;
  margin-top: 2px;
}
.prod-price .op {
  font-size: 9.5px; color: #999;
  text-decoration: line-through; font-weight: 400;
  margin-right: 3px;
}
.prod-disc { font-size: 9.5px; color: #e53935; font-weight: 700; }
.prod-btn {
  margin: 4px 8px 8px;
  background: #0A1128; color: #fff;
  border: none; border-radius: 5px;
  padding: 7px 5px; font-size: 11px; font-weight: 600;
  font-family: 'Hind Siliguri', sans-serif;
  cursor: pointer; width: calc(100% - 16px);
  transition: background 0.2s;
}
.prod-btn:hover { background: #FF5E36; }

