/* ==========================================================================
   LOVINA BEAUTY - Modern CSS Enhancements
   Loaded AFTER style.css to override defaults
   ========================================================================== */

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* Brand Colors */
  --lv-primary: #f1a395;
  --lv-primary-dark: #e28a7c;
  --lv-primary-light: #f8d7d0;
  --lv-primary-gradient: linear-gradient(135deg, #f1a395 0%, #e28a7c 100%);

  /* Text Colors */
  --lv-text-dark: #2d2d2d;
  --lv-text-medium: #666666;
  --lv-text-light: #999999;

  /* Backgrounds */
  --lv-bg-light: #fdf8f7;
  --lv-bg-white: #ffffff;
  --lv-bg-dark: #2d2d2d;
  --lv-bg-footer: #1a1a1a;

  /* Borders */
  --lv-border: #f0e8e6;
  --lv-border-light: rgba(241, 163, 149, 0.15);

  /* Shadows */
  --lv-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
  --lv-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --lv-shadow-lg: 0 20px 40px rgba(241, 163, 149, 0.15);
  --lv-shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.05);

  /* Typography */
  --lv-font-heading: 'Playfair Display', serif;
  --lv-font-body: 'Inter', sans-serif;

  /* Spacing */
  --lv-radius-sm: 8px;
  --lv-radius-md: 12px;
  --lv-radius-lg: 16px;
  --lv-radius-xl: 20px;
  --lv-radius-pill: 9999px;

  /* Transitions */
  --lv-transition-fast: 0.2s ease;
  --lv-transition-base: 0.3s ease;
  --lv-transition-slow: 0.6s ease;
  --lv-transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ==========================================================================
   1. PROMO BANNER BAR
   ========================================================================== */

.promo-banner {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lv-primary-gradient);
  color: #ffffff;
  font-family: var(--lv-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1;
  z-index: 1001;
  position: relative;
  animation: slideDown 0.6s ease forwards;
  overflow: hidden;
}

.promo-banner p {
  margin: 0;
  padding: 0 15px;
}

.promo-banner a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 6px;
  transition: opacity var(--lv-transition-fast);
}

.promo-banner a:hover {
  opacity: 0.85;
}

.promo-banner .promo-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--lv-transition-fast);
  padding: 0;
  line-height: 1;
}

.promo-banner .promo-close:hover {
  opacity: 1;
}


/* ==========================================================================
   2. GLASSMORPHIC STICKY NAVBAR & LANGUAGE DROPDOWN
   ========================================================================== */

/* Hide the old header-top completely */
.header-area .header-top {
  display: none !important;
}

/* Compact the navbar */
.header-area.header-style3.header-default .header-bottom {
  padding: 10px 0;
  border-bottom: 1px solid var(--lv-border);
}

.header-bottom.sticky-header.sticky {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lv-border-light) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
  padding: 6px 0 !important;
}

.header-bottom.sticky-header {
  transition: all var(--lv-transition-base);
}

/* Make sticky header compact */
.header-area .sticky-header.sticky .header-align {
  padding: 0 !important;
}

/* Logo sizing in sticky mode */
.header-area .sticky-header.sticky .header-logo-area img {
  max-height: 45px !important;
}

/* Normal logo sizing */
.header-logo-area img.logo-main {
  max-height: 55px;
  width: auto;
}

/* Navbar link hover enhancements */
.header-bottom .main-menu nav > ul > li > a,
.header-bottom .main-menu.nav > li > a {
  position: relative;
  transition: color var(--lv-transition-fast);
  font-family: var(--lv-font-body);
  font-weight: 500;
  font-size: 14px;
}

.header-bottom .main-menu nav > ul > li > a:hover,
.header-bottom .main-menu.nav > li > a:hover {
  color: var(--lv-primary-dark) !important;
}

/* === LANGUAGE DROPDOWN IN HEADER-BOTTOM === */

/* Language dropdown container */
.header-bottom .theme-language,
.header-area .header-bottom .theme-language {
  display: inline-block !important;
  position: relative !important;
  margin-right: 0;
}

/* The dropdown trigger button */
.header-bottom .theme-language .dropdown-btn,
.header-area .header-bottom .theme-language .dropdown-btn {
  color: var(--lv-text-dark) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-family: var(--lv-font-body);
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1;
  position: relative;
  text-transform: none;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius-pill);
  background: var(--lv-bg-light);
  transition: all var(--lv-transition-fast);
}

.header-bottom .theme-language .dropdown-btn:hover {
  border-color: var(--lv-primary);
  background: #fff;
}

/* Remove any old flag images that might appear */
.header-bottom .theme-language .dropdown-btn img {
  display: none !important;
}

/* The dropdown menu */
.header-bottom .theme-language .dropdown-content,
.header-area .header-bottom .theme-language .dropdown-content {
  background-color: #fff !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  border-radius: 12px !important;
  border: 1px solid var(--lv-border) !important;
  left: auto !important;
  right: 0 !important;
  margin: 0 !important;
  min-width: 160px !important;
  max-height: 0 !important;
  margin-top: 8px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  top: 100% !important;
  text-align: initial !important;
  z-index: 9999 !important;
  transition: all 0.3s ease !important;
  list-style: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
}

/* Show dropdown on hover */
.header-bottom .theme-language:hover .dropdown-content,
.header-area .header-bottom .theme-language:hover .dropdown-content {
  max-height: 200px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  padding: 8px 0 !important;
}

/* Dropdown items */
.header-bottom .theme-language .dropdown-content li {
  list-style: none;
}

.header-bottom .theme-language .dropdown-content li a,
.header-area .header-bottom .theme-language .dropdown-content li a {
  border-bottom: none !important;
  color: var(--lv-text-dark) !important;
  display: block !important;
  font-family: var(--lv-font-body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  padding: 10px 20px !important;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.header-bottom .theme-language .dropdown-content li a:hover,
.header-area .header-bottom .theme-language .dropdown-content li a:hover {
  background: var(--lv-bg-light) !important;
  color: var(--lv-primary-dark) !important;
  padding-left: 24px !important;
}

/* Remove any old flag images from dropdown */
.header-bottom .theme-language .dropdown-content li a img {
  display: none !important;
}

/* Hover bridge */
.header-bottom .theme-language:hover:before {
  position: absolute;
  content: "";
  width: 160px;
  height: 12px;
  right: 0;
  bottom: -8px;
}


/* ==========================================================================
   3. SOCIAL ICONS HEADER
   ========================================================================== */

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

.header-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--lv-text-medium);
  font-size: 13px;
  border-radius: 50%;
  transition: color var(--lv-transition-fast),
              background-color var(--lv-transition-fast),
              transform var(--lv-transition-fast);
}

.header-social-icons a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.header-social-icons a.facebook:hover {
  background-color: #1877f2;
}

.header-social-icons a.instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.header-social-icons a.youtube:hover {
  background-color: #ff0000;
}

.header-social-icons a.tiktok:hover {
  background-color: #010101;
}


/* ==========================================================================
   4. FULL-SCREEN HERO
   ========================================================================== */

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-fullscreen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241, 163, 149, 0.3), rgba(226, 138, 124, 0.2));
  z-index: 1;
  pointer-events: none;
}

.hero-fullscreen .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-fullscreen .hero-content h1 {
  font-family: var(--lv-font-heading);
  font-size: 56px;
  color: var(--lv-text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-fullscreen .hero-content p {
  font-family: var(--lv-font-body);
  font-size: 18px;
  color: var(--lv-text-medium);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.hero-fullscreen .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-fullscreen .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating decorative elements */
.hero-fullscreen .float-element {
  position: absolute;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-fullscreen .float-element:nth-child(2) {
  animation-delay: -2s;
}

.hero-fullscreen .float-element:nth-child(3) {
  animation-delay: -4s;
}


/* ==========================================================================
   5. MODERN SECTION TITLES
   ========================================================================== */

.section-title-modern {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-modern h2 {
  font-family: var(--lv-font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--lv-text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-title-modern h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--lv-primary-gradient);
  margin: 15px auto 0;
  border-radius: var(--lv-radius-pill);
}

.section-title-modern p {
  font-family: var(--lv-font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--lv-text-medium);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ==========================================================================
   6. ENHANCED PRODUCT CARDS
   ========================================================================== */

.product-card-modern {
  position: relative;
  background: var(--lv-bg-white);
  border-radius: var(--lv-radius-lg);
  border: 1px solid var(--lv-border);
  overflow: hidden;
  box-shadow: var(--lv-shadow-sm);
  transition: transform var(--lv-transition-base),
              box-shadow var(--lv-transition-base);
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--lv-shadow-lg);
}

/* Product image container */
.product-card-modern .product-img {
  position: relative;
  overflow: hidden;
  background: var(--lv-bg-light);
}

.product-card-modern .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--lv-transition-slow);
}

.product-card-modern:hover .product-img img {
  transform: scale(1.05);
}

/* Product badge */
.product-card-modern .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--lv-primary-gradient);
  color: #ffffff;
  font-family: var(--lv-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--lv-radius-pill);
  line-height: 1;
}

/* Quick action buttons on hover */
.product-card-modern .product-actions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--lv-transition-base),
              transform var(--lv-transition-base);
  z-index: 2;
}

.product-card-modern:hover .product-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card-modern .product-actions button,
.product-card-modern .product-actions a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--lv-border);
  border-radius: 50%;
  color: var(--lv-text-dark);
  font-size: 15px;
  cursor: pointer;
  transition: background var(--lv-transition-fast),
              color var(--lv-transition-fast),
              transform var(--lv-transition-fast);
}

.product-card-modern .product-actions button:hover,
.product-card-modern .product-actions a:hover {
  background: var(--lv-primary);
  color: #ffffff;
  border-color: var(--lv-primary);
  transform: scale(1.1);
}

/* Product details */
.product-card-modern .product-details {
  padding: 18px 16px;
}

.product-card-modern .product-brand {
  font-family: var(--lv-font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lv-primary-dark);
  margin-bottom: 6px;
}

.product-card-modern .product-name {
  font-family: var(--lv-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--lv-text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-modern .product-name a {
  color: inherit;
  text-decoration: none;
  transition: color var(--lv-transition-fast);
}

.product-card-modern .product-name a:hover {
  color: var(--lv-primary-dark);
}

.product-card-modern .product-price {
  font-family: var(--lv-font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--lv-primary-dark);
}

.product-card-modern .product-price .old-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--lv-text-light);
  text-decoration: line-through;
  margin-left: 8px;
}


/* ==========================================================================
   7. CATEGORY CARDS
   ========================================================================== */

.category-card-modern {
  text-align: center;
  padding: 30px 20px;
  background: var(--lv-bg-white);
  border-radius: var(--lv-radius-xl);
  border: 1px solid var(--lv-border);
  transition: transform var(--lv-transition-base),
              box-shadow var(--lv-transition-base);
  cursor: pointer;
}

.category-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--lv-shadow-md);
}

.category-card-modern .category-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--lv-primary-light);
  transition: border-color var(--lv-transition-base),
              transform var(--lv-transition-base);
}

.category-card-modern:hover .category-img {
  border-color: var(--lv-primary);
  transform: scale(1.05);
}

.category-card-modern .category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-modern .category-name {
  font-family: var(--lv-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--lv-text-dark);
  margin-bottom: 4px;
}

.category-card-modern .category-count {
  font-family: var(--lv-font-body);
  font-size: 13px;
  color: var(--lv-text-light);
}


/* ==========================================================================
   8. CTA BUTTONS
   ========================================================================== */

/* Primary filled button */
.btn-lovina {
  display: inline-block;
  border-radius: var(--lv-radius-pill);
  background: var(--lv-primary-gradient);
  color: #ffffff;
  padding: 14px 36px;
  font-family: var(--lv-font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: transform var(--lv-transition-fast),
              box-shadow var(--lv-transition-base);
}

.btn-lovina:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(241, 163, 149, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-lovina:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(241, 163, 149, 0.3);
}

/* Outline variant */
.btn-lovina-outline {
  display: inline-block;
  border-radius: var(--lv-radius-pill);
  background: transparent;
  color: var(--lv-primary-dark);
  padding: 13px 36px;
  font-family: var(--lv-font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--lv-primary);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: background var(--lv-transition-fast),
              color var(--lv-transition-fast),
              transform var(--lv-transition-fast),
              box-shadow var(--lv-transition-base);
}

.btn-lovina-outline:hover {
  background: var(--lv-primary-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(241, 163, 149, 0.4);
  text-decoration: none;
}

.btn-lovina-outline:active {
  transform: translateY(0);
}

/* Small variant */
.btn-lovina.btn-sm,
.btn-lovina-outline.btn-sm {
  padding: 10px 24px;
  font-size: 11px;
}

/* Large variant */
.btn-lovina.btn-lg,
.btn-lovina-outline.btn-lg {
  padding: 18px 48px;
  font-size: 14px;
}


/* ==========================================================================
   9. BRAND STORY SECTION
   ========================================================================== */

.brand-story-section {
  background-color: var(--lv-bg-light);
  padding: 80px 0;
  overflow: hidden;
}

.brand-story-section .story-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.brand-story-section .story-text {
  flex: 1;
}

.brand-story-section .story-text::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--lv-primary-gradient);
  border-radius: var(--lv-radius-pill);
  margin-bottom: 25px;
}

.brand-story-section .story-text h2 {
  font-family: var(--lv-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--lv-text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.brand-story-section .story-text p {
  font-family: var(--lv-font-body);
  font-size: 15px;
  color: var(--lv-text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}

.brand-story-section .story-text blockquote {
  font-family: var(--lv-font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--lv-primary-dark);
  border-left: 3px solid var(--lv-primary);
  padding-left: 20px;
  margin: 25px 0;
  line-height: 1.5;
}

.brand-story-section .story-image {
  flex: 1;
  border-radius: var(--lv-radius-xl);
  overflow: hidden;
  position: relative;
}

.brand-story-section .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--lv-radius-xl);
}

.brand-story-section .story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--lv-radius-xl);
  border: 1px solid var(--lv-border-light);
}


/* ==========================================================================
   10. NEWSLETTER SECTION
   ========================================================================== */

.newsletter-section {
  background: var(--lv-bg-dark);
  padding: 70px 0;
  text-align: center;
}

.newsletter-section h3 {
  font-family: var(--lv-font-heading);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.newsletter-section p {
  font-family: var(--lv-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.newsletter-section .newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-section .newsletter-form input[type="email"] {
  flex: 1;
  height: 50px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: var(--lv-radius-pill) 0 0 var(--lv-radius-pill);
  color: #ffffff;
  font-family: var(--lv-font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--lv-transition-fast),
              background var(--lv-transition-fast);
}

.newsletter-section .newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-section .newsletter-form input[type="email"]:focus {
  border-color: var(--lv-primary);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-section .newsletter-form button {
  height: 50px;
  padding: 0 32px;
  background: var(--lv-primary-gradient);
  border: none;
  border-radius: 0 var(--lv-radius-pill) var(--lv-radius-pill) 0;
  color: #ffffff;
  font-family: var(--lv-font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--lv-transition-fast),
              box-shadow var(--lv-transition-base);
}

.newsletter-section .newsletter-form button:hover {
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(241, 163, 149, 0.35);
}


/* ==========================================================================
   11. ENHANCED FOOTER
   ========================================================================== */

.footer-modern {
  background: var(--lv-bg-footer);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--lv-font-body);
}

.footer-modern .footer-main {
  padding: 60px 0 40px;
}

.footer-modern .footer-logo {
  margin-bottom: 20px;
}

.footer-modern .footer-logo img {
  max-height: 40px;
  filter: brightness(0) invert(1);
}

.footer-modern .footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-modern .footer-heading {
  font-family: var(--lv-font-body);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  position: relative;
}

.footer-modern .footer-heading::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background: var(--lv-primary-gradient);
  margin-top: 10px;
  border-radius: var(--lv-radius-pill);
}

.footer-modern .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern .footer-links li {
  margin-bottom: 12px;
}

.footer-modern .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--lv-transition-fast),
              padding-left var(--lv-transition-fast);
}

.footer-modern .footer-links a:hover {
  color: var(--lv-primary);
  padding-left: 5px;
}

/* Footer social icons */
.footer-modern .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-modern .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  text-decoration: none;
  transition: background var(--lv-transition-fast),
              color var(--lv-transition-fast),
              transform var(--lv-transition-fast);
}

.footer-modern .footer-social a:hover {
  background: var(--lv-primary-gradient);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Footer contact info */
.footer-modern .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-modern .footer-contact li i {
  color: var(--lv-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Copyright bar */
.footer-modern .footer-copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-modern .footer-copyright a {
  color: var(--lv-primary);
  text-decoration: none;
}

.footer-modern .footer-copyright a:hover {
  text-decoration: underline;
}


/* ==========================================================================
   12. BREADCRUMB
   ========================================================================== */

.breadcrumb-modern {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  font-family: var(--lv-font-body);
  font-size: 13px;
}

.breadcrumb-modern li {
  display: inline-flex;
  align-items: center;
  color: var(--lv-text-light);
}

.breadcrumb-modern li a {
  color: var(--lv-text-medium);
  text-decoration: none;
  transition: color var(--lv-transition-fast);
}

.breadcrumb-modern li a:hover {
  color: var(--lv-primary-dark);
}

.breadcrumb-modern li.active {
  color: var(--lv-primary-dark);
  font-weight: 500;
}

.breadcrumb-modern .separator {
  margin: 0 10px;
  color: #cccccc;
  font-size: 10px;
}


/* ==========================================================================
   13. SCROLL TO TOP
   ========================================================================== */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lv-primary-gradient);
  color: #ffffff;
  border: none;
  border-radius: var(--lv-radius-md);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--lv-transition-base),
              visibility var(--lv-transition-base),
              transform var(--lv-transition-base),
              box-shadow var(--lv-transition-base);
  box-shadow: 0 4px 15px rgba(241, 163, 149, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(241, 163, 149, 0.45);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}


/* ==========================================================================
   14. ANIMATIONS & KEYFRAMES
   ========================================================================== */

/* Fade in from below */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gentle floating motion */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Slide down from top (promo banner) */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shimmer loading effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Pulse glow */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(241, 163, 149, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(241, 163, 149, 0);
  }
}

/* Scroll-triggered animation base state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Shimmer placeholder */
.shimmer-placeholder {
  background: linear-gradient(90deg,
    var(--lv-border) 25%,
    var(--lv-primary-light) 50%,
    var(--lv-border) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--lv-radius-sm);
}


/* ==========================================================================
   15. RESPONSIVE ADJUSTMENTS
   ========================================================================== */

/* ---- Tablet & Below (max-width: 991px) ---- */
@media (max-width: 991px) {

  .hero-fullscreen {
    min-height: 75vh;
  }

  .hero-fullscreen .hero-content h1 {
    font-size: 40px;
  }

  .hero-fullscreen .hero-content p {
    font-size: 16px;
  }

  .section-title-modern h2 {
    font-size: 28px;
  }

  .section-title-modern {
    margin-bottom: 35px;
  }

  .brand-story-section .story-content {
    flex-direction: column;
    gap: 40px;
  }

  .brand-story-section .story-text::before {
    margin-left: auto;
    margin-right: auto;
  }

  .brand-story-section .story-text {
    text-align: center;
  }

  .brand-story-section .story-text blockquote {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--lv-primary);
    padding-top: 20px;
  }

  .footer-modern .footer-main {
    padding: 40px 0 30px;
  }
}

/* ---- Mobile (max-width: 767px) ---- */
@media (max-width: 767px) {

  /* Promo banner */
  .promo-banner {
    font-size: 11px;
    height: 34px;
  }

  /* Hero */
  .hero-fullscreen {
    min-height: 60vh;
  }

  .hero-fullscreen .hero-content h1 {
    font-size: 30px;
  }

  .hero-fullscreen .hero-content p {
    font-size: 14px;
    padding: 0 20px;
  }

  /* Section titles */
  .section-title-modern h2 {
    font-size: 24px;
  }

  .section-title-modern p {
    font-size: 13px;
    padding: 0 15px;
  }

  .section-title-modern {
    margin-bottom: 30px;
  }

  /* Product cards */
  .product-card-modern:hover {
    transform: translateY(-4px);
  }

  .product-card-modern .product-details {
    padding: 14px 12px;
  }

  .product-card-modern .product-name {
    font-size: 14px;
  }

  .product-card-modern .product-price {
    font-size: 15px;
  }

  /* Category cards */
  .category-card-modern {
    padding: 20px 15px;
  }

  .category-card-modern .category-img {
    width: 80px;
    height: 80px;
  }

  .category-card-modern .category-name {
    font-size: 15px;
  }

  /* Buttons */
  .btn-lovina,
  .btn-lovina-outline {
    padding: 12px 28px;
    font-size: 12px;
  }

  /* Brand story */
  .brand-story-section {
    padding: 50px 0;
  }

  .brand-story-section .story-text h2 {
    font-size: 26px;
  }

  .brand-story-section .story-text blockquote {
    font-size: 18px;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 50px 0;
  }

  .newsletter-section h3 {
    font-size: 24px;
  }

  .newsletter-section .newsletter-form {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    padding: 0 20px;
  }

  .newsletter-section .newsletter-form input[type="email"] {
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--lv-radius-pill);
  }

  .newsletter-section .newsletter-form button {
    width: 100%;
    border-radius: var(--lv-radius-pill);
  }

  /* Footer */
  .footer-modern .footer-heading {
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .footer-modern .footer-description {
    max-width: 100%;
  }

  /* Scroll to top */
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* Breadcrumb */
  .breadcrumb-modern {
    font-size: 12px;
    padding: 12px 0;
  }
}

/* ---- Small Mobile (max-width: 480px) ---- */
@media (max-width: 480px) {

  .hero-fullscreen .hero-content h1 {
    font-size: 26px;
  }

  .section-title-modern h2 {
    font-size: 22px;
  }

  .newsletter-section h3 {
    font-size: 20px;
  }

  .brand-story-section .story-text h2 {
    font-size: 22px;
  }

  .brand-story-section .story-text blockquote {
    font-size: 16px;
  }
}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Background helpers */
.bg-lovina-light { background-color: var(--lv-bg-light); }
.bg-lovina-white { background-color: var(--lv-bg-white); }

/* Text color helpers */
.text-lovina       { color: var(--lv-primary); }
.text-lovina-dark  { color: var(--lv-primary-dark); }

/* Section padding */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* ==========================================================================
   RESPONSIVE HEADER LANGUAGE DROPDOWN
   ========================================================================== */

.responsive-header .theme-language {
  display: inline-block;
  position: relative;
}

.responsive-header .theme-language .dropdown-content {
  background-color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  border: 1px solid var(--lv-border);
  left: auto;
  right: 0;
  min-width: 150px;
  max-height: 0;
  margin-top: 8px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  list-style: none;
  opacity: 0;
  visibility: hidden;
}

.responsive-header .theme-language:hover .dropdown-content {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
  padding: 8px 0;
}

.responsive-header .theme-language .dropdown-content li {
  list-style: none;
}

.responsive-header .theme-language .dropdown-content li a {
  color: var(--lv-text-dark);
  display: block;
  font-family: var(--lv-font-body);
  font-size: 13px;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.responsive-header .theme-language .dropdown-content li a:hover {
  background: var(--lv-bg-light);
  color: var(--lv-primary-dark);
}

/* ==========================================================================
   SOCIAL CONNECT SECTION
   ========================================================================== */

.social-connect-section {
  padding: 60px 0;
  background: var(--lv-bg-light);
}

.social-connect-section h4 {
  font-family: var(--lv-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--lv-text-dark);
  margin-bottom: 20px;
}

.social-connect-section p {
  font-family: var(--lv-font-body);
  font-size: 14px;
  color: var(--lv-text-medium);
  margin-bottom: 16px;
}

.social-icons-large {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-icons-large a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--lv-border);
  color: var(--lv-text-medium);
  font-size: 18px;
  transition: all var(--lv-transition-fast);
}

.social-icons-large a:hover {
  background: var(--lv-primary);
  color: #fff;
  border-color: var(--lv-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(241, 163, 149, 0.3);
}

/* Footer modern overrides */
.footer-modern {
  background: var(--lv-bg-footer) !important;
  padding: 60px 0 0 !important;
}

.footer-modern .footer-widget-title {
  font-family: var(--lv-font-body) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}

.footer-modern .footer-brand-desc {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}

.footer-modern .footer-address {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 13px !important;
}

.footer-modern .footer-address i {
  color: var(--lv-primary);
  margin-right: 6px;
}

.footer-modern .footer-nav-menu {
  list-style: none;
  padding: 0;
}

.footer-modern .footer-nav-menu li {
  margin-bottom: 10px;
}

.footer-modern .footer-nav-menu li a {
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: var(--lv-font-body);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-modern .footer-nav-menu li a:hover {
  color: var(--lv-primary) !important;
  padding-left: 6px;
}

.footer-modern .footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-modern .footer-contact-list li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-modern .footer-contact-list li i {
  color: var(--lv-primary);
  margin-right: 8px;
  width: 16px;
}

.footer-modern .footer-contact-list li a {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-modern .footer-contact-list li a:hover {
  color: var(--lv-primary) !important;
}

.footer-modern .footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-modern .footer-social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: all var(--lv-transition-fast);
}

.footer-modern .footer-social-icons a:hover {
  background: var(--lv-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-modern .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-modern .footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 13px !important;
}

.footer-modern .footer-bottom .copyright a {
  color: var(--lv-primary) !important;
}

.footer-modern .footer-logo img {
  max-height: 50px;
  margin-bottom: 16px;
}

/* Newsletter section overrides */
.newsletter-section .newsletter-title {
  font-family: var(--lv-font-heading) !important;
  font-size: 28px !important;
  color: #fff !important;
  margin-bottom: 8px !important;
}

.newsletter-section .newsletter-subtitle {
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: var(--lv-font-body) !important;
  font-size: 14px !important;
}

.newsletter-section .newsletter-input-group {
  display: flex;
  max-width: 480px;
}

.newsletter-section .newsletter-input-group input[type="email"] {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: var(--lv-radius-pill) 0 0 var(--lv-radius-pill);
  color: #fff;
  font-family: var(--lv-font-body);
  font-size: 14px;
  outline: none;
}

.newsletter-section .newsletter-input-group input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-section .newsletter-input-group .btn-lovina {
  border-radius: 0 var(--lv-radius-pill) var(--lv-radius-pill) 0;
  white-space: nowrap;
  padding: 14px 28px;
}
