/** Shopify CDN: Minification failed

Line 23:18 Expected identifier but found whitespace
Line 23:20 Unexpected "{"
Line 23:30 Expected ":"
Line 24:20 Expected identifier but found whitespace
Line 24:22 Unexpected "{"
Line 24:32 Expected ":"
Line 25:17 Expected identifier but found whitespace
Line 25:19 Unexpected "{"
Line 25:29 Expected ":"
Line 26:23 Expected identifier but found whitespace
... and 37 more hidden warnings

**/
/* ==========================================================================
   LAKSHIV ENTERPRISE - LUXURY UI/UX DESIGN SYSTEM (250ms CUBIC-BEZIER)
   Inspired by Apple, Caraway, Made In & Dot & Key Interactive Polish
   ========================================================================== */

:root {
  /* Premium Palette */
  --color-primary: {{ settings.color_primary | default: '#111111' }};
  --color-secondary: {{ settings.color_secondary | default: '#1F2E22' }};
  --color-accent: {{ settings.color_accent | default: '#8C6A46' }};
  --color-accent-hover: {{ settings.color_accent_hover | default: '#735534' }};
  --color-bg-primary: {{ settings.color_bg_primary | default: '#F9F6F0' }};
  --color-bg-secondary: {{ settings.color_bg_secondary | default: '#F3EFEA' }};
  --color-card-bg: {{ settings.color_card_bg | default: '#FFFFFF' }};
  --color-text-primary: {{ settings.color_text_primary | default: '#111111' }};
  --color-text-muted: {{ settings.color_text_muted | default: '#666666' }};
  --color-border: {{ settings.color_border | default: '#EAE6E1' }};
  
  --color-sale-badge: {{ settings.color_sale_badge | default: '#8C6A46' }};
  --color-bestseller-badge: {{ settings.color_bestseller_badge | default: '#D97706' }};
  --color-trending-badge: {{ settings.color_trending_badge | default: '#059669' }};

  --page-width: {{ settings.page_width | default: 1400 }}px;
  --radius-global: 16px;
  --radius-pill: 9999px;
  
  /* Layered Luxury Shadows */
  --shadow-subtle: 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 12px 35px rgba(0, 0, 0, 0.08);
  --shadow-floating: 0 20px 45px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 14px 35px rgba(140, 106, 70, 0.35);
  
  /* Precision Easing (250ms cubic-bezier) */
  --transition-fast: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 350ms cubic-bezier(0.16, 1, 0.3, 1);
  
  --font-body-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading-family: "Playfair Display", Georgia, serif;
}

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

html {
  font-size: {{ settings.body_font_size | default: 16 }}px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body-family);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
  touch-action: manipulation;
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 14px 28px;
  z-index: 99999;
  border-radius: var(--radius-pill);
  transition: top var(--transition-fast);
}
.skip-to-content:focus {
  top: 20px;
}

/* Page Containers */
.page-container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .page-container {
    padding: 0 40px;
  }
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading-family);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Typography Helpers */
.h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-family: var(--font-heading-family); line-height: 1.15; font-weight: 700; }
.h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); font-family: var(--font-heading-family); line-height: 1.2; font-weight: 700; }
.h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-family: var(--font-heading-family); line-height: 1.3; font-weight: 600; }

/* HIGH-CONTRAST LUXURY BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Primary Button: Black #111111 -> Hover Warm Bronze #8C6A46 */
.btn-primary {
  background-color: #111111;
  color: #FFFFFF;
  box-shadow: var(--shadow-medium);
  border: 2px solid #111111;
}

.btn-primary:hover {
  background-color: #8C6A46;
  border-color: #8C6A46;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-glow);
}

/* Secondary Button: White -> Hover Black */
.btn-secondary {
  background-color: #FFFFFF;
  color: #111111;
  border: 2px solid #111111;
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background-color: #111111;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-medium);
}

/* Outline Button */
.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.03);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  box-shadow: var(--shadow-subtle);
}
.badge-sale { background-color: var(--color-sale-badge); }
.badge-bestseller { background-color: var(--color-bestseller-badge); }
.badge-trending { background-color: var(--color-trending-badge); }

/* Glassmorphism Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(234, 230, 225, 0.8);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.glass-panel:hover {
  box-shadow: var(--shadow-medium);
}

/* Modals & Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

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

/* Grid System */
.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Accordion Item Styles */
.accordion-item {
  border-bottom: 1px solid #EAE6E1;
  padding: 14px 0;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111111;
  user-select: none;
}
.accordion-header svg {
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-item.is-open .accordion-header svg {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding-top: 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.accordion-item.is-open .accordion-content {
  display: block;
  animation: fadeIn 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Master Product Media Gallery Outer Layout */
.product-gallery {
  width: 100%;
  box-sizing: border-box;
}

.product-gallery-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  border: 1px solid #EAE6E1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .product-gallery-inner {
    border-radius: 12px;
    margin-bottom: 8px;
  }
}

/* Master Product Details Page Layout Grid */
.product-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .product-layout-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
    gap: 56px !important;
  }
}

/* Catalog Page (Collection Page) Mobile Grid Alignment */
@media (max-width: 991px) {
  .collection-page-section > .page-container > .grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
  }
  .collection-filters {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 24px;
  }
}

/* Catalog Mobile Responsiveness Overrides */
@media (max-width: 767px) {
  /* Dynamic 2 Products Per Row in Catalog on Mobile */
  [data-product-grid] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* Product Details Page Responsive Overrides (For Mobile & Tablets under 991px) */
@media (max-width: 991px) {
  .product-layout-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }
  
  .product-gallery-image {
    max-height: 380px !important;
    width: 100% !important;
    object-fit: contain !important;
  }
  
  .product-gallery {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
  }
  
  .product-info h1 {
    font-size: 1.45rem !important;
  }

  .product-purchase-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .product-qty-wishlist-row {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
  }
}

/* Desktop gallery wrapper alignment */
@media (min-width: 992px) {
  .product-gallery {
    position: sticky;
    top: 100px;
    width: 100%;
  }
  .product-gallery-image {
    max-height: 500px !important;
    width: 100% !important;
    object-fit: contain !important;
  }
  .product-purchase-box {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .product-qty-wishlist-row {
    display: flex;
    gap: 12px;
    align-items: center;
    width: auto;
  }
}


/* Sticky Purchase Bar Styles */
.product-sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  padding: 12px 24px;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.1);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .product-sticky-buy-bar {
    display: none !important; /* Prevent sticky drawer width overflow shifts on mobile viewport sizes */
  }
}







