/* ==================== START CSS VARIABLES ==================== */
:root {
    --color-bg: #ffffff;
    --color-primary: #f8c6d8;
    --color-secondary: #c6a5f8;
    --color-text: #333333;
    --color-accent: #ff69b4;
    --color-accent-hover: #e05a9f;
    --color-light: #faf5f7;
    --color-border: #f0e0e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
    --max-width: 1200px;
}
/* ==================== END CSS VARIABLES ==================== */

/* ==================== START RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ✅ REMOVED: h1, p, div { margin-bottom: 10px; } */
/* Let components define their own spacing */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
/* ==================== END RESET & BASE STYLES ==================== */

/* ==================== START HEADER ==================== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-accent);
    letter-spacing: -0.5px;
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 5px;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    font-size: 1.25rem;
    color: var(--color-text);
    padding: 8px;
    transition: var(--transition);
}

.cart-btn:hover {
    color: var(--color-accent);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text);
}
/* ==================== END HEADER ==================== */

/* ==================== START HERO SECTION ==================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--color-text);
    opacity: 0.9;
}
/* ==================== END HERO SECTION ==================== */

/* ==================== START BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-bg);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background-color: var(--color-bg);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}
/* ==================== END BUTTONS ==================== */

/* ==================== START FILTER SECTION ==================== */
.filter-section {
    padding: 30px 0 20px;
    background-color: var(--color-bg);
    position: sticky;
    top: 70px;
    z-index: 900;
    border-bottom: 1px solid var(--color-border);
}

.filter-dropdowns {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-dropdown label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    white-space: nowrap;
}

.filter-dropdown label i {
    color: var(--color-accent);
    margin-right: 5px;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background-color: var(--color-light);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    min-width: 180px;
    outline: none;
}

.filter-select:hover {
    border-color: var(--color-accent);
}

.filter-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}
/* ==================== END FILTER SECTION ==================== */

/* ==================== START PRODUCT GRID ==================== */
.products-section {
    padding: 60px 0 100px;
    background-color: var(--color-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--color-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-slider {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: block;
}

.product-slider img.active {
    opacity: 1;
    z-index: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-accent);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    z-index: 2;
    opacity: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-card:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--color-bg);
    width: 20px;
    border-radius: 3px;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
    line-height: 1.4;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
}
/* ==================== END PRODUCT GRID ==================== */

/* ==================== START CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-bg);
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--color-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-text);
}

.contact-details p {
    color: var(--color-text);
    opacity: 0.8;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-cta {
    text-align: center;
    margin-top: 30px;
}

.contact-cta .btn {
    min-width: 250px;
}
/* ==================== END CONTACT SECTION ==================== */

/* ==================== START CART MODAL ==================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-light);
}

.cart-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
}

.close-cart {
    font-size: 1.5rem;
    color: var(--color-text);
    transition: var(--transition);
    padding: 5px;
}

.close-cart:hover {
    color: var(--color-accent);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    color: var(--color-text);
    opacity: 0.6;
    padding: 60px 0;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
    animation: fadeIn 0.3s ease;
}

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

.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    background-color: #f0f0f0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--color-text);
}

.cart-item-price {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-item-remove {
    color: #dc3545;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 5px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    text-decoration: underline;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}
/* ==================== END CART MODAL ==================== */




/* ==================== START BRIGHT MINDS CREDIT BAR STYLES ==================== */

/* Compact Centered Bar */
.bms-bar {
  display: flex;
  justify-content: center;
  padding: 8px 15px;
  background: transparent;
  position: relative;
}

.bms-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 450px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #25D366, transparent);
  opacity: 0.6;
}

.bms-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 50px;
  border: 1px solid #333;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Label Text */
.bms-label {
  color: #888;
  font-weight: 400;
  white-space: nowrap;
}

/* Noticeable WhatsApp Button */
.bms-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}

.bms-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

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

.bms-btn i {
  font-size: 0.9rem;
  animation: bmsPulse 2s ease-in-out infinite;
}

@keyframes bmsPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Divider */
.bms-divider {
  color: #444;
  font-weight: 300;
  user-select: none;
}

/* Contact Link */
.bms-contact {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 4px;
}

.bms-contact:hover {
  color: #1ebe57;
  background: rgba(37, 211, 102, 0.1);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
  .bms-bar {
    padding: 6px 10px;
  }
  
  .bms-content {
    gap: 10px;
    padding: 5px 14px;
    font-size: 0.75rem;
  }
  
  .bms-btn {
    padding: 5px 12px;
    font-size: 0.75rem;
    gap: 5px;
  }
  
  .bms-btn i {
    font-size: 0.85rem;
  }
  
  .bms-divider {
    display: none; /* Hide divider on very small screens */
  }
  
  .bms-contact {
    font-size: 0.75rem;
    padding: 3px 6px;
  }
}

/* ==================== LIGHT MODE SUPPORT ==================== */
@media (prefers-color-scheme: light) {
  .bms-bar::before {
    background: linear-gradient(90deg, transparent, #128C7E, transparent);
  }
  
  .bms-content {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e0e0e0;
  }
  
  .bms-label {
    color: #666;
  }
  
  .bms-divider {
    color: #ccc;
  }
}

/* ==================== END BRIGHT MINDS CREDIT BAR STYLES ==================== */




/* ==================== START FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    object-fit: contain;
    background-color: var(--color-bg);
    padding: 5px;
    border-radius: var(--radius);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4,
.footer-contacts h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.footer-links ul li,
.footer-contacts ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    opacity: 1;
    padding-left: 5px;
}

.footer-contacts ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.footer-contacts ul li i {
    color: var(--color-accent);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-accent);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.9rem;
}
/* ==================== END FOOTER ==================== */

/* ==================== START RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--color-bg);
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        z-index: 999;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-slider {
        height: 280px;
    }

    .slider-btn {
        opacity: 1;
    }

    .cart-modal {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .social-icons {
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* Filter Dropdowns - Horizontal, Hide Labels */
    .filter-section {
        padding: 20px 0 15px;
    }
    
    .filter-dropdowns {
        gap: 15px;
    }
    
    .filter-dropdown label {
        display: none; /* Hide labels on mobile */
    }
    
    .filter-select {
        min-width: 140px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Reduced Product Card Sizes for Mobile */
    .product-slider {
        height: 220px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .product-actions .btn {
        padding: 8px;
        font-size: 0.8rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Filter Dropdowns - Compact Horizontal */
    .filter-section {
        padding: 15px 0 10px;
    }
    
    .filter-dropdowns {
        gap: 10px;
    }
    
    .filter-select {
        min-width: 130px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .filter-dropdown {
        gap: 6px;
    }
}
/* ==================== END RESPONSIVE DESIGN ==================== */















/* ==================== START ABOUT & TERMS PAGES - COMPLETE CSS ==================== */

/* ==================== NOTE: CSS VARIABLES ==================== */
/* This file uses variables from main css/style.css:
   --color-bg, --color-primary, --color-secondary, --color-text, --color-accent,
   --color-accent-hover, --color-light, --color-border, --shadow-sm, --shadow-md,
   --shadow-lg, --transition, --radius, --max-width
   Make sure style.css is linked BEFORE this file in HTML!
==================== END NOTE ==================== */

/* ==================== START ABOUT PAGE STYLES ==================== */

/* About Page Body */
.about-page {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== START ABOUT HEADER ==================== */
.about-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.about-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-logo a {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.about-logo a:hover {
    opacity: 0.8;
}

.about-nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.about-nav-links a:hover,
.about-nav-links a.active {
    color: var(--color-accent);
}

.about-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
}

.about-hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1001;
    transition: var(--transition);
}

.about-hamburger:hover {
    color: var(--color-accent);
}

.about-mobile-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-bg);
    box-shadow: var(--shadow-md);
    transition: left 0.3s ease-in-out;
    z-index: 999;
    padding: 30px 20px;
    display: block;
    overflow-y: auto;
}

.about-mobile-menu.active {
    left: 0;
}

.about-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.about-mobile-menu a {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    padding: 12px 25px;
    display: block;
    text-align: center;
    border-radius: var(--radius);
}

.about-mobile-menu a:hover,
.about-mobile-menu a.active {
    color: var(--color-accent);
    background-color: var(--color-light);
}

.about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: none;
}

.about-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}
/* ==================== END ABOUT HEADER ==================== */

/* ==================== START ABOUT MAIN CONTENT ==================== */
.about-main {
    padding: 80px 0;
    min-height: 60vh;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* About Features */
.about-features {
    background-color: var(--color-light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.about-features-title {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
}

.about-feature-item:last-child {
    border-bottom: none;
}

.about-feature-item i {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.about-feature-item strong {
    color: var(--color-accent);
    font-weight: 600;
}
/* ==================== END ABOUT MAIN CONTENT ==================== */

/* ==================== START ABOUT FOOTER ==================== */
.about-footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text);
    padding: 60px 0 30px;
}

.about-footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.about-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.about-footer-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.about-footer-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
    padding: 5px 0;
}

.about-footer-links a:hover,
.about-footer-links a.active {
    color: var(--color-accent);
    opacity: 1;
}

.about-footer-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-social {
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.about-whatsapp {
    background-color: #25D366;
}

.about-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.about-instagram {
    background-color: #E1306C;
}

.about-instagram:hover {
    background-color: #C13584;
    transform: translateY(-2px);
}

.about-facebook {
    background-color: #1877F2;
}

.about-facebook:hover {
    background-color: #1657B8;
    transform: translateY(-2px);
}

.about-footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}
/* ==================== END ABOUT FOOTER ==================== */

/* ==================== END ABOUT PAGE STYLES ==================== */

/* ==================== START TERMS PAGE STYLES ==================== */

/* Terms Page Body */
.terms-page {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== START TERMS HEADER ==================== */
.terms-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.terms-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.terms-logo a {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.terms-logo a:hover {
    opacity: 0.8;
}

.terms-nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.terms-nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.terms-nav-links a:hover,
.terms-nav-links a.active {
    color: var(--color-accent);
}

.terms-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
}

.terms-hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1001;
    transition: var(--transition);
}

.terms-hamburger:hover {
    color: var(--color-accent);
}

.terms-mobile-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-bg);
    box-shadow: var(--shadow-md);
    transition: left 0.3s ease-in-out;
    z-index: 999;
    padding: 30px 20px;
    display: block;
    overflow-y: auto;
}

.terms-mobile-menu.active {
    left: 0;
}

.terms-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.terms-mobile-menu a {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    padding: 12px 25px;
    display: block;
    text-align: center;
    border-radius: var(--radius);
}

.terms-mobile-menu a:hover,
.terms-mobile-menu a.active {
    color: var(--color-accent);
    background-color: var(--color-light);
}

.terms-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: none;
}

.terms-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}
/* ==================== END TERMS HEADER ==================== */

/* ==================== START TERMS MAIN CONTENT ==================== */
.terms-main {
    padding: 80px 0;
    min-height: 60vh;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-title {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.terms-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.9;
}

.terms-section {
    background-color: var(--color-light);
    padding: 25px 30px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--color-accent);
    transition: var(--transition);
}

.terms-section:hover {
    box-shadow: var(--shadow-sm);
}

.terms-section-title {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.terms-section p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    opacity: 0.9;
}

.terms-section strong {
    color: var(--color-accent);
    font-weight: 600;
}
/* ==================== END TERMS MAIN CONTENT ==================== */

/* ==================== START TERMS FOOTER ==================== */
.terms-footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text);
    padding: 60px 0 30px;
}

.terms-footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.terms-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.terms-footer-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.terms-footer-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
    padding: 5px 0;
}

.terms-footer-links a:hover,
.terms-footer-links a.active {
    color: var(--color-accent);
    opacity: 1;
}

.terms-footer-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.terms-social {
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.terms-whatsapp {
    background-color: #25D366;
}

.terms-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.terms-instagram {
    background-color: #E1306C;
}

.terms-instagram:hover {
    background-color: #C13584;
    transform: translateY(-2px);
}

.terms-facebook {
    background-color: #1877F2;
}

.terms-facebook:hover {
    background-color: #1657B8;
    transform: translateY(-2px);
}

.terms-footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}
/* ==================== END TERMS FOOTER ==================== */

/* ==================== END TERMS PAGE STYLES ==================== */

/* ==================== START RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .about-title,
    .terms-title {
        font-size: 2.2rem;
    }
    
    .about-features-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .about-hamburger,
    .terms-hamburger {
        display: block !important;
    }
    
    /* Hide desktop nav on mobile */
    .about-nav-links,
    .terms-nav-links {
        display: none !important;
    }
    
    /* Ensure overlay displays when active */
    .about-overlay.active,
    .terms-overlay.active {
        display: block !important;
    }
    
    /* Content padding */
    .about-main,
    .terms-main {
        padding: 60px 0;
    }
    
    .about-title,
    .terms-title {
        font-size: 2rem;
    }
    
    .about-text p,
    .terms-intro {
        font-size: 1rem;
    }
    
    .about-features {
        padding: 30px 20px;
    }
    
    .about-features-title {
        font-size: 1.5rem;
    }
    
    .terms-section {
        padding: 20px 25px;
    }
    
    .terms-section-title {
        font-size: 1.2rem;
    }
    
    /* Footer adjustments */
    .about-footer-content,
    .terms-footer-content {
        gap: 20px;
    }
    
    .about-footer-links,
    .terms-footer-links {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .about-social,
    .terms-social {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Nav adjustments */
    .about-nav,
    .terms-nav {
        padding: 12px 15px;
    }
    
    .about-logo a,
    .terms-logo a {
        font-size: 1.3rem;
    }
    
    /* Content adjustments */
    .about-title,
    .terms-title {
        font-size: 1.8rem;
    }
    
    .about-wrapper,
    .about-features,
    .terms-content {
        padding: 0 15px;
    }
    
    .about-features {
        padding: 25px 20px;
    }
    
    .terms-section {
        padding: 18px 20px;
    }
    
    .terms-section-title {
        font-size: 1.1rem;
    }
    
    /* Footer adjustments */
    .about-footer-copy,
    .terms-footer-copy {
        font-size: 0.85rem;
    }
    
    .about-footer-logo,
    .terms-footer-logo {
        font-size: 1.3rem;
    }
}
/* ==================== END RESPONSIVE DESIGN ==================== */

/* ==================== END ABOUT & TERMS PAGES - COMPLETE CSS ==================== */



/* ================= COMPACT PRODUCT CARDS (JUMIA STYLE) ================= */
@media (max-width: 480px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
        gap: 10px;
    }

    .product-card {
        border-radius: 6px;
    }

    /* Smaller Image */
    .product-slider {
        height: 160px;
    }

    /* Reduce padding */
    .product-info {
        padding: 10px;
    }

    /* Smaller text */
    .product-category {
        font-size: 0.65rem;
        margin-bottom: 5px;
    }

    .product-name {
        font-size: 0.85rem;
        margin-bottom: 6px;
        line-height: 1.2;

        /* Limit text to 2 lines */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-price {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    /* Compact buttons */
    .product-actions {
        gap: 6px;
        flex-direction: column;
    }

    .product-actions .btn {
        padding: 6px;
        font-size: 0.75rem;
    }

    /* Hide slider arrows for clean look */
    .slider-btn {
        display: none;
    }

    /* Smaller dots */
    .slider-dot {
        width: 5px;
        height: 5px;
    }
}

.slider-btn {
    display: flex;
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    opacity: 0.8;
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 5px;
}


/* Desktop Only Hover */
.product-slider img {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

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



/* hero */
/* ==================== NEW HERO DESIGN ==================== */
.hero {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    overflow: hidden;
}

/* Light background image */
.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08; /* softer */
    top: 0;
    left: 0;
}

/* Container layout */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Left content */
.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Right image */
.hero-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-side img {
    max-width: 100%;
    height: auto;
}



/* ==================== HERO MOBILE OPTIMIZATION ==================== */
@media (max-width: 768px) {

    .hero {
        padding: 30px 0; /* reduce height */
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Hide right image for compact layout */
    .hero-side {
        display: none;
    }

    /* Make background even lighter */
    .hero-image {
        opacity: 0.05;
    }
}