/** Shopify CDN: Minification failed

Line 17:21 Expected identifier but found whitespace
Line 17:23 Unexpected "{"
Line 17:33 Expected ":"
Line 18:15 Expected identifier but found whitespace
Line 18:17 Unexpected "{"
Line 18:27 Expected ":"
Line 19:17 Expected identifier but found whitespace
Line 19:19 Unexpected "{"
Line 19:29 Expected ":"
Line 20:22 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
:root {
  --color-background: {{ settings.background_color }};
  --color-text: {{ settings.text_color }};
  --color-button: {{ settings.button_background }};
  --color-button-text: {{ settings.button_text }};
  --color-outline-button: {{ settings.outline_button }};
  --color-accent: {{ settings.accent_color }};
  --color-gold: {{ settings.gold_accent }};
  
  /* Additional custom variables */
  --color-cream: #FFF8E7;
  --color-soft-pink: #FFF0F5;
  --color-medium-pink: #FFCCD5;
  --color-light-gold: #F5E1A4;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: 'Poppins', sans-serif;
}

/* Header Styling */
.header {
  background-color: var(--color-cream);
  border-bottom: 2px solid var(--color-gold);
}

.header__logo img {
  max-height: 80px;
}

/* Navigation Menu */
.header-wrapper {
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.header__menu-item {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__menu-item:hover {
  color: var(--color-gold);
}

.header__menu-item.header__active-menu-item {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

/* Category Navigation Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.category-tab {
  padding: 12px 24px;
  background-color: var(--color-cream);
  color: var(--color-text);
  border: 1px solid var(--color-gold);
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover, .category-tab.active {
  background-color: var(--color-gold);
  color: white;
}

/* Buttons */
.button {
  background-color: var(--color-button);
  color: var(--color-button-text);
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(212, 167, 106, 0.3);
}

.button--outline {
  background-color: transparent;
  border: 2px solid var(--color-outline-button);
  color: var(--color-outline-button);
}

.button--outline:hover {
  background-color: var(--color-outline-button);
  color: white;
}

/* Product Cards */
.card-wrapper {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(212, 167, 106, 0.2);
}

.card__information {
  padding: 16px;
  background-color: white;
}

.card__heading {
  color: var(--color-text);
  font-weight: 600;
}

.price {
  color: var(--color-gold);
  font-weight: 600;
}

/* Featured Collections Section */
.featured-collection {
  margin: 60px 0;
}

.featured-collection__header {
  text-align: center;
  margin-bottom: 30px;
}

.featured-collection__title {
  font-size: 30px;
  color: var(--color-text);
  position: relative;
  display: inline-block;
}

.featured-collection__title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-gold);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px;
  max-width: 700px;
  background-color: rgba(255, 245, 245, 0.85);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero__heading {
  font-size: 48px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero__text {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Category Showcase */
.category-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.category-showcase__item {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-showcase__item:hover .category-showcase__image {
  transform: scale(1.05);
}

.category-showcase__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.category-showcase__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Footer */
.footer {
  background-color: var(--color-cream);
  padding: 60px 0 30px;
  border-top: 2px solid var(--color-gold);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer__block-title {
  color: var(--color-gold);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__menu-link {
  color: var(--color-text);
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

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

.footer__bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  color: var(--color-text);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .hero {
    height: 400px;
  }
  
  .hero__heading {
    font-size: 36px;
  }
  
  .hero__content {
    padding: 20px;
    max-width: 90%;
  }
  
  .category-tabs {
    gap: 10px;
  }
  
  .category-tab {
    padding: 8px 16px;
    font-size: 14px;
  }
}