@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --brand-green: #10b981;
  --brand-green-light: #ecfdf5;
  --brand-green-dark: #059669;
  --brand-blue: #3b82f6;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: #f1f5f9;
  --header-height: 120px;
  --header-height-mobile: 70px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
}

* { 
    box-sizing: border-box; 
    padding: 0; 
    margin: 0; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    color: var(--text-primary); 
    background: var(--bg-primary); 
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

.header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 2000;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}

.header.scrolled {
  height: 80px;
  box-shadow: var(--shadow-md);
}

.header-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

.logo-image { 
    max-height: 100px; 
    transition: var(--transition); 
}

.header.scrolled .logo-image {
    max-height: 60px;
}

.nav-list { display: flex; gap: 32px; align-items: center; }
.nav-list a { 
    font-weight: 600; 
    font-size: 0.95rem; 
    color: var(--text-primary); 
    letter-spacing: 0.5px;
    position: relative; 
}
.nav-list > li > a::after { 
    content: ''; 
    position: absolute; 
    bottom: -6px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: linear-gradient(to right, var(--brand-green), var(--brand-blue)); 
    transition: var(--transition); 
}
.nav-list > li > a:hover { color: var(--brand-green); }
.nav-list > li > a:hover::after { width: 100%; }

/* Navigation Dropdowns */
.has-dropdown > a::after { content: "▼"; font-size: 0.6em; margin-left: 6px; vertical-align: middle; display: inline-block; }
.nav-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 200px; background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); border-radius: 12px; padding: 10px 0;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); list-style: none; z-index: 1000;
}
.has-dropdown:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li { position: relative; }
.nav-dropdown li a { display: block; padding: 12px 20px; color: var(--text-secondary); white-space: nowrap; }
.nav-dropdown li a:hover { background: #f8fafc; color: var(--brand-green); padding-left: 25px; }

/* Sub-level (Level 3+) Dropdowns */
.nav-dropdown .nav-dropdown {
    top: 0; left: 100%; transform: translateX(10px);
}
.nav-dropdown .has-dropdown > a::after { content: "▶"; float: right; margin-top: 4px; }
.has-dropdown:hover > .nav-dropdown.level-3 {
    opacity: 1; visibility: visible; transform: translateX(0);
}


/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}
.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.hero { background: linear-gradient(135deg, #f6fcf7 0%, #e8f5e9 100%); padding: 120px 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.product-image { max-width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)); transform: scale(1.05); }
.badge { background: var(--brand-green); color: white; padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; box-shadow: 0 4px 10px rgba(118, 184, 42, 0.2); }
.title { font-size: 3.5rem; font-family: 'Outfit'; color: #1e293b; line-height: 1.2; margin-bottom: 25px; font-weight: 800; }
.description { font-size: 1.15rem; color: #64748b; line-height: 1.8; margin-bottom: 35px; }
.price-section { margin-bottom: 35px; display: flex; align-items: center; gap: 15px; }
.price { font-size: 2rem; font-weight: 800; color: var(--brand-green); font-family: 'Outfit'; }
.hero-actions-box { display: flex; align-items: center; gap: 30px; margin-top: 30px; }

@media (max-width: 576px) {
    .hero-actions-box { flex-direction: column; gap: 20px; align-items: stretch; text-align: center; }
}

.btn-primary { 
    display: inline-block;
    background: var(--brand-green); 
    color: white; 
    padding: 18px 45px; 
    border-radius: 50px; 
    border: none; 
    font-weight: 700; 
    font-size: 1.1rem;
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(118, 184, 42, 0.3);
    text-align: center;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(118, 184, 42, 0.4);
    background: #6aad24;
}
.btn-primary:active {
    transform: translateY(-1px);
}

.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; padding: 60px 0; }
.category-card { text-align: center; background: white; padding: 20px; border-radius: 20px; border: 1px solid var(--border-color); }
.cat-image { height: 200px; object-fit: contain; margin-bottom: 20px; }

.footer { background: var(--bg-secondary); padding: 60px 0 0; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 40px; }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 20px 0; text-align: center; color: var(--text-secondary); font-size: 0.9rem; }

/* User Menu & Actions */
.actions { display: flex; align-items: center; gap: 20px; }
.login-link { font-weight: 600; padding: 10px 20px; background: var(--brand-green-light); color: var(--brand-green); border-radius: 8px; }
.user-menu { position: relative; cursor: pointer; }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--brand-green); }
.dropdown {
    position: absolute; top: 100%; right: 0; background: white; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-radius: 12px;
    padding: 15px; min-width: 160px; display: none; flex-direction: column; gap: 10px; z-index: 100;
}
.user-menu:hover .dropdown { display: flex; }
.dropdown p { font-weight: 700; border-bottom: 1px solid var(--border-color); padding-bottom: 8px; margin-bottom: 5px; }
.dropdown a { font-size: 0.9rem; color: var(--text-secondary); }
.dropdown a:hover { color: var(--brand-green); }

.cart { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.currency { font-weight: 700; color: var(--brand-green); }
.cart-icon { position: relative; color: var(--brand-green); }
.cart-count {
    position: absolute; top: -8px; right: -8px; background: var(--brand-green);
    color: white; font-size: 10px; width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; border: 2px solid white;
}

/* Responsive Styles */
/* Responsive Styles Enhancement */
@media (max-width: 1100px) {
  :root { --header-height: 140px; }
  .logo-image { max-height: 110px; }
  .title { font-size: 3rem; }
}

@media (max-width: 991px) {
  :root { --header-height: 100px; }
  .header { height: var(--header-height); }
  .logo-image { max-height: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero { padding: 80px 0; }
  .title { font-size: 2.5rem; }
  .description { font-size: 1.1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  
  /* Mobile Nav Logic */
  .mobile-toggle { display: flex; order: 1; }
  .logo { order: 2; position: absolute; left: 50%; transform: translateX(-50%); }
  .actions { order: 3; }
  .currency { display: none; }
  
  .nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: white;
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }
  .nav.active { left: 0; }
  .nav-list { flex-direction: column; gap: 30px; text-align: center; }
  .nav-list a { font-size: 1.5rem; font-family: 'Outfit'; }
}

@media (max-width: 576px) {
  :root { --header-height: 80px; }
  .logo-image { max-height: 50px; }
  .title { font-size: 2rem; }
  .hero { padding: 40px 0; }
  .btn-primary { width: 100%; padding: 15px 30px; }
  .price-section { justify-content: center; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .cat-image { height: 120px; }
  .container { padding: 0 16px; }
  
  /* Featured Cards RWD */
  .featured-grid { grid-template-columns: 1fr; gap: 20px; }
  .featured-image-box { height: 220px; padding: 20px; }
  .featured-info { padding: 20px; }
  .featured-info h3 { font-size: 1.25rem; }
}

/* Base Classes for Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.stack-mobile { display: flex; flex-direction: column; }

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* Activity Ribbon Section */
.product-card-container { position: relative; overflow: hidden; }
.ribbon-wrapper {
    width: 150px; height: 150px; overflow: hidden;
    position: absolute; top: -10px; right: -10px; z-index: 10;
}
.ribbon {
    font-weight: 800; text-align: center;
    transform: rotate(45deg); position: relative;
    padding: 10px 0; left: -5px; top: 45px; width: 200px;
    background-color: #ef4444; color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    font-size: 0.85rem; letter-spacing: 1px;
    text-transform: uppercase;
}
.ribbon.gold { background-color: #f59e0b; }
.ribbon.green { background-color: #76b82a; }

/* Responsive Utility Classes */
.r-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.r-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.r-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.r-stack { display: flex; flex-direction: column; gap: 20px; }

@media (max-width: 991px) {
    .r-grid-2, .r-grid-3 { grid-template-columns: 1fr; gap: 30px; }
    .text-center-mobile { text-align: center !important; }
}

@media (max-width: 576px) {
    .r-container { padding: 0 16px; }
    .hide-mobile { display: none !important; }
}

/* Header RWD Fixes */
@media (max-width: 991px) {
    .header-container { padding: 0 15px; }
    .logo { 
        position: absolute; 
        left: 50%; 
        transform: translateX(-50%); 
        width: auto !important;
        margin: 0 !important;
    }
    .logo-image { height: 45px !important; width: auto !important; }
    .actions { gap: 10px; margin-left: auto; }
}

/* Product Page Premium Layout */
.product-page-wrapper { background: #fff; padding: 60px 0; }
.product-grid-main { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

@media (max-width: 991px) {
    .product-grid-main { grid-template-columns: 1fr; gap: 40px; }
}

/* Gallery */
.gallery-container { position: sticky; top: 220px; }
.main-image-viewport { 
    background: #f8fafc; border-radius: 30px; padding: 40px; 
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #f1f5f9; margin-bottom: 20px;
    height: 560px; overflow: hidden;
}
.main-viewport-img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)); }
.thumbnails-grid { display: flex; gap: 15px; flex-wrap: wrap; }
.thumb-item { 
    width: 80px; height: 80px; border-radius: 12px; 
    border: 2px solid transparent; cursor: pointer; 
    overflow: hidden; background: #f8fafc; padding: 8px;
    transition: 0.3s;
}
.thumb-item img { width: 100%; height: 100%; object-fit: contain; }
.thumb-item.active { border-color: var(--brand-green); background: #fff; box-shadow: 0 4px 12px rgba(118,184,42,0.15); }

/* Info Panel */
.category-path { color: var(--brand-green); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.product-title { font-family: 'Outfit'; font-size: 2.75rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; margin-bottom: 15px; }
.marketing-badge { display: inline-block; background: #fef3c7; color: #d97706; padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; margin-bottom: 25px; }

.price-box { margin-bottom: 40px; display: flex; align-items: center; gap: 20px; }
.original-price { color: #94a3b8; text-decoration: line-through; font-size: 1.2rem; }
.current-price { color: var(--brand-green); font-size: 2.5rem; font-weight: 800; font-family: 'Outfit'; }

.product-meta { padding-top: 30px; border-top: 1px solid #f1f5f9; margin-bottom: 40px; }
.meta-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.meta-item .label { color: #64748b; font-weight: 500; font-size: 0.95rem; }
.meta-item .value { font-weight: 700; }
.meta-item .value.in-stock { color: #059669; }
.meta-item .value.out-of-stock { color: #ef4444; }

/* Action Zone */
.action-zone { background: #f8fafc; padding: 30px; border-radius: 24px; border: 1px solid #f1f5f9; margin-bottom: 40px; }
.quantity-selector-v2 { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.quantity-selector-v2 .label { font-weight: 700; color: var(--text-primary); }
.q-control { display: flex; background: #fff; border: 1px solid #e2e8f0; border-radius: 50px; overflow: hidden; }
.q-btn { width: 45px; height: 45px; border: none; background: none; cursor: pointer; font-size: 1.2rem; transition: 0.2s; }
.q-btn:hover { background: #f1f5f9; }
.q-control input { width: 60px; text-align: center; border: none; font-weight: 700; font-size: 1rem; color: var(--text-primary); pointer-events: none; }

.buy-buttons { display: flex; gap: 15px; }
.add-to-cart-btn { 
    flex: 1; height: 60px; border-radius: 50px; background: var(--brand-green); 
    color: #fff; font-weight: 800; border: none; cursor: pointer; font-size: 1.15rem;
    box-shadow: 0 10px 20px rgba(118,184,42,0.25); transition: 0.3s;
}
.add-to-cart-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(118,184,42,0.35); background: #6aad24; }
.out-of-stock-btn { flex: 1; height: 60px; border-radius: 50px; background: #cbd5e1; color: #fff; font-weight: 800; border: none; cursor: not-allowed; font-size: 1.15rem; }

.benefits-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.benefit .icon { font-size: 1.5rem; margin-bottom: 8px; }
.benefit p { font-size: 0.8rem; font-weight: 600; color: #64748b; margin: 0; }

/* Featured Section RWD fixes */
@media (max-width: 768px) {
    .featured-section { padding: 60px 0 !important; }
    .featured-section h2 { font-size: 2rem !important; }
    .featured-section div[style*="flex-end"] { flex-direction: column; align-items: flex-start !important; gap: 15px; }
}

/* Featured Section */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.featured-card { 
    background: #fff; border-radius: 32px; overflow: hidden; 
    border: 1px solid #f1f5f9; cursor: pointer; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.featured-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.featured-image-box { 
    height: 300px; padding: 40px; background: #fafafa; 
    display: flex; align-items: center; justify-content: center; position: relative;
}
.featured-image-box img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1)); transition: 0.5s; }
.featured-card:hover .featured-image-box img { transform: scale(1.1); }
.featured-tag { 
    position: absolute; top: 25px; left: 25px; background: #fff; 
    color: var(--brand-green); font-weight: 800; font-size: 0.75rem; 
    padding: 8px 18px; border-radius: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.featured-info { padding: 35px; text-align: center; }
.featured-info h3 { font-size: 1.5rem; color: #1e293b; margin-bottom: 12px; font-weight: 700; }
.featured-info .price { font-weight: 800; color: var(--brand-green); font-size: 1.25rem; margin-bottom: 25px; }
.featured-info .price .old { color: #cbd5e1; text-decoration: line-through; font-weight: 400; font-size: 1rem; margin-right: 10px; }
.view-btn { 
    padding: 12px 35px; border-radius: 50px; border: 2px solid var(--brand-green);
    background: transparent; color: var(--brand-green); font-weight: 700; cursor: pointer;
    transition: 0.3s;
}
.featured-card:hover .view-btn { background: var(--brand-green); color: #fff; box-shadow: 0 8px 20px rgba(118,184,42,0.3); }

/* About Page Custom Styles */
.about-hero { background: linear-gradient(135deg, #1e293b 0%, #1a2a44 100%); color: white; position: relative; overflow: hidden; padding: 120px 0; }
.hero-bg-pattern { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0.1; background-image: radial-gradient(#38bdf8 1px, transparent 1px); background-size: 30px 30px; }
.hero-badge { background: #38bdf8 !important; color: #1e293b !important; }
.hero-title { font-size: 4rem; font-family: 'Outfit'; font-weight: 800; margin: 20px 0; line-height: 1.1; }
.hero-desc { font-size: 1.25rem; color: #94a3b8; max-width: 700px; margin: 0 auto; }

.section-padding { padding: 100px 0; }
.align-center { align-items: center; }
.section-title-bordered { font-size: 2.5rem; font-weight: 800; color: #1e293b; margin-bottom: 30px; font-family: 'Outfit'; border-left: 8px solid var(--brand-green); padding-left: 25px; }
.text-stack { display: flex; flex-direction: column; gap: 25px; font-size: 1.1rem; line-height: 1.8; color: #475569; }

.feature-card-box { background: #f8fafc; border-radius: 40px; padding: 50px; border: 1px solid #e2e8f0; }
.feature-stack { display: flex; flex-direction: column; gap: 40px; }
.feature-item { display: flex; gap: 20px; }
.feature-icon { font-size: 2rem; width: 60px; height: 60px; background: white; border-radius: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.05); flex-shrink: 0; }
.feature-info h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 5px; }
.feature-info p { color: #64748b; font-size: 0.9rem; }

.milestone-section { background: #f1f5f9; padding: 100px 0; text-align: center; }
.milestone-title { font-family: 'Outfit'; font-size: 2.5rem; font-weight: 800; margin-bottom: 50px; }
.milestone-card { padding: 40px; background: white; border-radius: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.ms-year { font-size: 2.5rem; font-weight: 800; color: var(--brand-green); margin-bottom: 15px; font-family: 'Outfit'; }
.ms-text { font-weight: 700; color: #1e293b; line-height: 1.5; }

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-padding { padding: 60px 0; }
    .feature-card-box { padding: 30px; border-radius: 25px; }
    .section-title-bordered { font-size: 2rem; }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

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

/* ==========================================================
   🚀 ADVANCED PREMIUM UI EFFECTS (HOMEPAGE UPGRADE)
   ========================================================== */

/* Typography & Colors */
.stylish-title { font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 900; line-height: 1.15; letter-spacing: -1px; margin-bottom: 25px; }
.gradient-text { 
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
}
.modern-desc { font-size: 1.25rem; color: #475569; line-height: 1.8; margin-bottom: 35px; }

/* Hero Banner - Glassmorphism */
.premium-hero {
    position: relative; padding: 120px 0; background-size: cover; background-position: center; background-attachment: fixed;
    min-height: 700px; display: flex; align-items: center; overflow: hidden;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.1) 100%); z-index: 1; }
.premium-hero .container { position: relative; z-index: 2; display: flex; align-items: center; }

.glass-card {
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5); padding: 50px; border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05); max-width: 600px;
}
.glow-badge { background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%); color: #0f766e; border: 1px solid rgba(16, 185, 129, 0.2); box-shadow: 0 0 20px rgba(16, 185, 129, 0.1); }

/* Beautiful Buttons */
.btn-premium {
    display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white; font-weight: 800; font-size: 1.1rem; padding: 18px 40px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-premium:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4); }
.btn-icon { transition: transform 0.3s; }
.btn-premium:hover .btn-icon { transform: translateX(5px); }

/* Floating Images */
.floating-img { animation: float 6s ease-in-out infinite; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15)); }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* Modern Layouts & Neumorphism */
.premium-bg { background-color: #f8fafc; padding: 100px 0; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.section-header-center { text-align: center; margin-bottom: 60px; }
.pre-title { font-size: 0.9rem; font-weight: 800; color: #10b981; letter-spacing: 2px; text-transform: uppercase; }
.view-all-link { display: flex; align-items: center; gap: 5px; color: #64748b; font-weight: 700; text-decoration: none; transition: 0.3s; }
.view-all-link:hover { color: #10b981; }
.view-all-link .arrow { transition: transform 0.3s; }
.view-all-link:hover .arrow { transform: translateX(5px); }

.modern-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.neumorphic-card {
    background: #ffffff; border-radius: 24px; overflow: hidden; border: 1px solid #f8fafc;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.neumorphic-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(16, 185, 129, 0.1); border-color: #e2e8f0; }

.card-img-wrapper { height: 280px; padding: 40px; position: relative; background: #fdfdfd; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.card-img-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; transition: 0.6s transform; }
.neumorphic-card:hover .card-img-wrapper img { transform: scale(1.1); }

.premium-ribbon {
    position: absolute; top: 20px; left: 20px; font-size: 0.8rem; font-weight: 800; padding: 6px 15px; border-radius: 50px; z-index: 2;
}
.premium-ribbon.gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: white; box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
.premium-ribbon.green { background: #ecfdf5; color: #10b981; border: 1px solid #d1fae5; }

.card-content { padding: 30px; }
.card-title { font-size: 1.25rem; font-weight: 800; color: #1e293b; margin-bottom: 10px; }
.price-row { display: flex; justify-content: space-between; align-items: center; }
.card-price { font-size: 1.25rem; font-weight: 800; color: #1e293b; }
.old-price { font-size: 0.9rem; text-decoration: line-through; color: #94a3b8; margin-right: 8px; font-weight: 500;}
.icon-btn-cart { width: 45px; height: 45px; border-radius: 50%; border: none; background: #f1f5f9; color: #64748b; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: 0.3s; }
.neumorphic-card:hover .icon-btn-cart { background: #10b981; color: white; transform: rotate(-10deg) scale(1.1); box-shadow: 0 5px 15px rgba(16,185,129,0.3); }

/* Hot Products Showcase */
.background-wave { background-color: #ffffff; padding: 100px 0; }
.product-showcase-card { display: flex; flex-direction: column; align-items: center; background: white; border: 1px solid #f1f5f9; border-radius: 20px; padding: 25px; cursor: pointer; transition: 0.4s; }
.product-showcase-card:hover { border-color: #cbd5e1; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.product-showcase-card .img-box { height: 180px; width: 100%; display: flex; justify-content: center; margin-bottom: 20px; position: relative; }
.product-showcase-card .img-box img { max-height: 100%; object-fit: contain; }
.nano-tag { font-size: 0.7rem; font-weight: 700; color: #3b82f6; background: #eff6ff; padding: 3px 8px; border-radius: 4px; margin-bottom: 5px; display: inline-block; }
.product-showcase-card h4 { font-size: 1.1rem; color: #1e293b; margin-bottom: 10px; font-weight: 700; text-align: center; }
.price-bar { display: flex; align-items: center; gap: 8px; }
.final-price { font-weight: 800; color: #10b981; font-size: 1.1rem; }
.strike-price { font-size: 0.85rem; color: #94a3b8; text-decoration: line-through; }

/* Scroll Animation Engine */
.animate-on-scroll { opacity: 0; visibility: hidden; will-change: transform, opacity; }
.is-visible { opacity: 1; visibility: visible; }

.slide-up.is-visible { animation: scrollSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes scrollSlideUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }

.pop-in.is-visible { animation: scrollPopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes scrollPopIn { 0% { opacity: 0; transform: scale(0.9); } 100% { opacity: 1; transform: scale(1); } }

/* Responsive adjustments */
@media (max-width: 900px) {
    .premium-hero { padding: 80px 0; background-position: left; }
    .stylish-title { font-size: 2.8rem; }
    .glass-card { padding: 30px; margin: 0 20px; }
    .image-wrapper { display: none; } /* Hide float image on mobile */
    .hero-overlay { background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%); }
}

/* Trust & Quality Features Section */
.trust-features {
    padding: 100px 0;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08); /* Using brand emerald for shadow */
    border-color: #e2e8f0;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #10b981;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .trust-features {
        padding: 60px 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-card {
        padding: 30px 20px;
    }
}

/* Premium Footer */
.premium-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 0;
    margin-top: 100px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 400px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--brand-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.social-icon.line:hover {
    background: #00c300;
    box-shadow: 0 10px 20px rgba(0, 195, 0, 0.3);
}

.footer-title {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--brand-green);
    transition: var(--transition);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.contact-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-item .text {
    line-height: 1.5;
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 0.5px;
}

/* 📱 Footer Responsive Magic */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-desc {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-title {
        display: inline-block;
        margin-bottom: 25px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-links a:hover {
        padding-left: 0;
        color: white;
        transform: scale(1.05);
    }
}

/* Premium Reveal & Motion Effects */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Button Overlays */
.btn-premium {
    position: relative;
    overflow: hidden;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
    pointer-events: none;
}

.btn-premium:hover::after {
    left: 100%;
}
