/** Shopify CDN: Minification failed

Line 60:0 All "@import" rules must come first

**/
/*=======================================================================
  MODERN BEAUTY E-COMMERCE REDESIGN
  Inspired by premium beauty brands with clean, sophisticated aesthetics
  Maintains blue color scheme as specified
=========================================================================*/

:root {
  /* Blue Color Palette */
  --primary-blue: #2563eb;
  --primary-blue-dark: #1e40af;
  --primary-blue-light: #dbeafe;

  /* Neutral Palette */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-600: #525252;
  --color-gray-800: #262626;
  --color-gray-900: #171717;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/*=======================================================================
  1. TYPOGRAPHY OVERHAUL
=========================================================================*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: var(--font-body) !important;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gray-800);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading) !important;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-sm);
}

h1, .h1 { font-size: 2.5rem; }
h2, .h2 { font-size: 2rem; }
h3, .h3 { font-size: 1.5rem; }
h4, .h4 { font-size: 1.25rem; }
h5, .h5 { font-size: 1.125rem; }
h6, .h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.75rem; }
  h3, .h3 { font-size: 1.35rem; }
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: var(--spacing-sm);
}

/*=======================================================================
  2. HEADER REDESIGN - Clean & Minimal
=========================================================================*/

.header {
  background: var(--color-white) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  padding: 0 !important;
  position: relative;
  z-index: 1000;
}

.header .container,
.header .full-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Logo Styling */
.header .logo {
  padding: var(--spacing-md) 0;
}

.header .logo a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.header .logo a:hover {
  opacity: 0.8;
}

/* Navigation Menu */
.header nav,
.header .menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.header nav a,
.header .menu a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gray-900) !important;
  text-decoration: none;
  padding: var(--spacing-sm) 0;
  position: relative;
  transition: color 0.3s ease;
}

.header nav a:hover,
.header .menu a:hover {
  color: var(--primary-blue) !important;
}

.header nav a::after,
.header .menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.header nav a:hover::after,
.header .menu a:hover::after {
  width: 100%;
}

/* Header Icons */
.header-page-cart,
.header-page-setting {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header-page-cart a,
.header-page-setting a,
.header-page-cart button,
.header-page-setting button {
  color: var(--color-gray-900) !important;
  font-size: 20px;
  padding: var(--spacing-xs);
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header-page-cart a:hover,
.header-page-setting a:hover,
.header-page-cart button:hover,
.header-page-setting button:hover {
  color: var(--primary-blue) !important;
  transform: scale(1.1);
}

/* Search Bar */
.header-search form,
.header-search input[type="search"] {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  padding: var(--spacing-xs) var(--spacing-md);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
}

.header-search input[type="search"]:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: var(--color-white);
  box-shadow: 0 0 0 3px var(--primary-blue-light);
}

/*=======================================================================
  3. PRODUCT GRID REDESIGN - Modern Card Layout
=========================================================================*/

.products,
.product-container,
#collection-product {
  display: grid;
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

/* Product Item - Clean Card Design */
.product-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  height: 100%;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gray-200);
}

/* Product Image Container */
.product-collection__image,
.product-image {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 3/4;
}

.product-collection__image img,
.product-image img,
.pr_lazy_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-collection__image img,
.product-item:hover .product-image img,
.product-item:hover .pr_lazy_img {
  transform: scale(1.05);
}

/* Product Content Area */
.product-collection__content,
.product-grid-style {
  padding: var(--spacing-md);
  background: var(--color-white);
}

/* Product Title */
.product-collection__title h2,
.product-collection__title h2 a,
.product-name,
.product-item h2,
.product-item h3 {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: var(--color-gray-900) !important;
  margin: var(--spacing-xs) 0 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-collection__title h2 a:hover,
.product-name a:hover {
  color: var(--primary-blue) !important;
}

/* Product Price */
.product-collection__price,
.price {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin: var(--spacing-sm) 0;
}

.product-collection__price .real,
.product-collection__price span,
.price .real,
.price span,
.money {
  font-family: var(--font-body) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--color-gray-900) !important;
  letter-spacing: 0 !important;
}

.product-collection__price .del,
.price .del,
.price .compare-at {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--color-gray-400) !important;
  text-decoration: line-through !important;
  opacity: 0.7;
}

/* Sale Badge */
.product-label,
.product-image__overlay-top-left {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  z-index: 10;
}

.product-label span,
.badge,
.label {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.product-label span.sale,
.badge.sale {
  background: #ef4444;
}

.product-label span.new,
.badge.new {
  background: #10b981;
}

/* Product Reviews/Ratings */
.product-collection__reviews,
.rating,
.spr-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: var(--spacing-xs) 0;
}

.product-collection__reviews .star,
.rating .star,
.spr-icon {
  color: #fbbf24 !important;
  font-size: 14px;
}

/* Product Buttons */
.add-to-cart,
.js_add_to_cart_button,
.btn,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  background: var(--primary-blue) !important;
  color: var(--color-white) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 12px 24px !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  width: 100%;
}

.add-to-cart:hover,
.js_add_to_cart_button:hover,
.btn:hover,
button[type="submit"]:hover {
  background: var(--primary-blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.add-to-cart:active,
.js_add_to_cart_button:active,
.btn:active,
button[type="submit"]:active {
  transform: translateY(0);
}

/* Wishlist & Compare Buttons */
.product-image__overlay-top-right {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.wishlist-button,
.compare-button,
.quickview-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 50%;
  color: var(--color-gray-900);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.product-item:hover .wishlist-button,
.product-item:hover .compare-button,
.product-item:hover .quickview-button {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-button:hover,
.compare-button:hover,
.quickview-button:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--color-white);
  transform: scale(1.1);
}

/* Hover Overlay Actions */
.product-image__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.product-item:hover .product-image__overlay-bottom {
  opacity: 1;
  transform: translateY(0);
}

/*=======================================================================
  4. COLLECTION PAGE LAYOUT
=========================================================================*/

.collection-header,
.page-header {
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
  background: var(--color-gray-50);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-xl);
}

.collection-title,
.page-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-sm);
}

.collection-description,
.page-description {
  font-size: 16px;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Filter & Sort Bar */
.collection-toolbar,
.collection-sorting,
.facets-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  border: 1px solid var(--color-gray-200);
  flex-wrap: wrap;
}

.collection-toolbar select,
.collection-sorting select,
.facets select {
  font-family: var(--font-body);
  font-size: 14px;
  padding: var(--spacing-xs) var(--spacing-sm);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-gray-900);
  cursor: pointer;
  transition: all 0.3s ease;
}

.collection-toolbar select:hover,
.collection-sorting select:hover,
.facets select:hover {
  border-color: var(--primary-blue);
}

.collection-toolbar select:focus,
.collection-sorting select:focus,
.facets select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px var(--primary-blue-light);
}

/*=======================================================================
  5. PAGINATION - Modern Style
=========================================================================*/

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  margin: var(--spacing-xl) 0;
}

.pagination a,
.pagination span,
.page-number,
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-900);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover,
.page-number:hover {
  background: var(--color-gray-50);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.pagination .current,
.page-number.current {
  background: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: var(--color-white) !important;
}

.pagination .disabled,
.page-number.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/*=======================================================================
  6. FOOTER REDESIGN
=========================================================================*/

footer,
.footer {
  background: var(--color-gray-900) !important;
  color: var(--color-gray-300) !important;
  padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-md) !important;
  margin-top: var(--spacing-2xl);
}

footer h3,
footer h4,
.footer h3,
.footer h4 {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--color-white) !important;
  margin-bottom: var(--spacing-md) !important;
}

footer a,
.footer a {
  color: var(--color-gray-300) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: color 0.3s ease !important;
}

footer a:hover,
.footer a:hover {
  color: var(--primary-blue) !important;
}

footer .social-icons a,
.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-gray-800);
  border-radius: 50%;
  margin-right: var(--spacing-xs);
  transition: all 0.3s ease;
}

footer .social-icons a:hover,
.footer .social-icons a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

/*=======================================================================
  7. FORM ELEMENTS - Clean & Modern
=========================================================================*/

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-gray-900);
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px var(--primary-blue-light);
}

label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-xs);
  display: block;
}

/*=======================================================================
  8. BREADCRUMBS
=========================================================================*/

.breadcrumb,
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 13px;
  color: var(--color-gray-600);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm) 0;
}

.breadcrumb a,
.breadcrumbs a {
  color: var(--color-gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: var(--primary-blue);
}

.breadcrumb .separator,
.breadcrumbs .separator {
  color: var(--color-gray-400);
  margin: 0 4px;
}

/*=======================================================================
  9. MOBILE OPTIMIZATIONS
=========================================================================*/

@media (max-width: 768px) {
  :root {
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
  }

  .header nav,
  .header .menu {
    gap: var(--spacing-sm);
  }

  .product-item {
    margin-bottom: var(--spacing-md);
  }

  .collection-toolbar,
  .collection-sorting {
    flex-direction: column;
    align-items: stretch;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .add-to-cart,
  .js_add_to_cart_button,
  .btn {
    font-size: 13px !important;
    padding: 10px 20px !important;
  }
}

/*=======================================================================
  10. UTILITY CLASSES
=========================================================================*/

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: var(--spacing-xs) !important; }
.p-2 { padding: var(--spacing-sm) !important; }
.p-3 { padding: var(--spacing-md) !important; }
.p-4 { padding: var(--spacing-lg) !important; }

/*=======================================================================
  11. ANIMATIONS & TRANSITIONS
=========================================================================*/

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}
