/* 
   CEYSU - Premium CSS Design System
*/

:root {
    /* Color Palette - Ceysu Brand Colors */
    --primary-blue: #b72b91;      /* Ceysu Magenta */
    --secondary-blue: #d64cb2;    /* Lighter Magenta */
    --accent-cyan: #fce4f4;       /* Very Light Pink/Magenta */
    --dark-blue: #7a1a60;         /* Dark Magenta */
    --text-dark: #2c2d3e;         /* Dark Slate */
    --text-light: #8D99AE;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Gradients */
    --water-gradient: linear-gradient(135deg, #b72b91 0%, #d64cb2 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(183, 43, 145, 0.1);
    --shadow-lg: 0 20px 40px rgba(183, 43, 145, 0.15);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Classes */
.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--water-gradient);
    border-radius: 2px;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--water-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(72, 202, 228, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 202, 228, 0.6);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}
.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Header New Styles */
.site-header {
    background-color: var(--white);
    padding-bottom: 20px;
}

/* Top Bar New */
.top-bar-new {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 400;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    align-items: center;
}
.top-bar-left .top-brand-name {
    font-weight: 700;
}
.top-bar-left .divider {
    margin: 0 10px;
    opacity: 0.5;
}
.top-bar-left .top-brand-sub {
    opacity: 0.8;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
.top-bar-center {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.top-bar-right .time-info, .top-bar-right .phone-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 25px 0;
}
.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Area */
.logo-area .logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-blue);
    line-height: 1;
}
.logo-icon-text .logo-icon {
    font-size: 1.8rem;
    margin-bottom: -5px;
}
.logo-icon-text .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #eaeaea;
    padding-left: 15px;
    line-height: 1.2;
}
.brand-text .brand-title {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}
.brand-text .brand-subtitle {
    color: #777;
    font-size: 0.9rem;
}

/* Search Area */
.search-area {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}
.search-form {
    display: flex;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.search-input::placeholder {
    color: #aaa;
}
.search-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
}
.search-btn:hover {
    background: var(--dark-blue);
}

/* Icons Area */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}
.action-item > i, .action-item .icon-wrapper > i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}
.action-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.action-title {
    font-size: 0.8rem;
    color: #777;
}
.action-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}
.icon-wrapper {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Bar */
.main-nav {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 8px 15px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}
.nav-left .categories-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    white-space: nowrap;
}
.nav-center {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}
.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    white-space: nowrap;
}
.nav-links a.active, .nav-links a:hover {
    color: var(--primary-blue);
}
.nav-links i {
    font-size: 1.1rem;
    color: #666;
}
.nav-links a.active i, .nav-links a:hover i {
    color: var(--primary-blue);
}
.nav-right .delivery-badge {
    background: #f0f7ff;
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.delivery-icon {
    color: var(--primary-blue);
    font-size: 1.5rem;
}
.delivery-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    white-space: nowrap;
}
.del-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
}
.del-desc {
    font-size: 0.75rem;
    color: #555;
}

/* Features Bar */
.features-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafe;
    border-radius: 12px;
    padding: 15px 30px;
}
.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feat-icon i {
    font-size: 1.6rem;
    color: var(--primary-blue);
}
.feat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.feat-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
}
.feat-desc {
    font-size: 0.8rem;
    color: #666;
}
.feat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Hero Slider Section */
.hero-slider-wrapper {
    position: relative;
    padding-top: 10px;
}

.hero-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 650px;
}

.hero-slide {
    display: none;
    padding: 60px 40px;
    min-height: 650px;
    background-size: cover;
    background-position: center;
}
.hero-slide.active {
    display: block;
}

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

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--primary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    background: var(--primary-blue);
    color: var(--white);
}
.prev-arrow {
    left: 20px;
}
.next-arrow {
    right: 20px;
}

/* Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
}
.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(13, 59, 132, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dots .dot.active {
    background: var(--primary-blue);
    width: 12px;
    height: 12px;
    margin-top: -2px; /* vertically align larger active dot */
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    width: 100%;
    max-width: 900px;
    z-index: 10;
    margin: 0 auto;
    margin-top: auto;
    transform: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    bottom: 30px;
    left: 60px;
    transform: none;
}

.horizontal-features {
    display: flex;
    flex-direction: row !important;
    gap: 20px;
    align-items: center;
    margin: 0 !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f4fa;
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.hero-subtitle-cursive {
    font-family: 'Caveat', cursive;
    color: var(--secondary-blue);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-desc {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.hero-desc strong {
    color: var(--primary-blue);
}

/* Mini Features inside Left */
.hero-mini-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.5rem;
}
.mini-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.1);
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.mini-feat-text {
    display: flex;
    flex-direction: column;
}
.mini-feat-text strong {
    color: var(--primary-blue);
    font-size: 0.85rem;
}
.mini-feat-text span {
    color: #666;
    font-size: 0.75rem;
}
.mini-feat-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.1);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.btn-shop {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-shop:hover {
    background: var(--dark-blue);
}
.btn-whatsapp-order {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-whatsapp-order:hover {
    background: var(--white);
}
.btn-whatsapp-order i {
    font-size: 1.5rem;
}
.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.btn-text span {
    font-size: 0.7rem;
    color: #555;
}
.btn-text strong {
    font-size: 0.95rem;
    color: var(--primary-blue);
}

/* Hero Center Product */
.hero-center {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 5;
    position: relative;
    order: 1;
}
.product-showcase img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Hero Right Info Card */
.hero-right {
    z-index: 10;
    order: 3;
}
.hero-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    width: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
}
.info-icon {
    color: var(--primary-blue);
    font-size: 1.4rem;
    width: 30px;
    display: flex;
    justify-content: center;
}
.info-text {
    display: flex;
    flex-direction: column;
}
.info-text strong {
    color: var(--primary-blue);
    font-size: 0.85rem;
    margin-bottom: 2px;
}
.info-text span {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.2;
}
.info-row-divider {
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 15px 0;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--water-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(72, 202, 228, 0.3);
}
.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.feature-card p {
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--bg-light);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.product-img-wrapper {
    height: 300px;
    background: linear-gradient(180deg, #F0F8FF 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.product-img-wrapper img {
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    z-index: 2;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}
/* Abstract water drop shape behind product */
.product-img-wrapper::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-cyan);
    opacity: 0.2;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite alternate;
    z-index: 1;
}
@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
.product-info {
    padding: 2rem;
    text-align: center;
}
.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.product-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Call to Action */
.cta-section {
    padding: 6rem 0;
    background: var(--water-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Background subtle waves could be added here */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}
.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Site Footer */
:root {
  --footer-navy: #e0f2fe; /* Soft sky blue */
  --footer-navy-light: #f0f9ff;
  --footer-purple: var(--primary-pink); /* Use brand pink for accents */
  --footer-purple-light: #ff7eb3;
  --footer-blue: var(--primary-blue);
  --footer-text: #1e293b; /* Dark text */
  --footer-muted: #475569;
  --footer-border: rgba(0, 0, 0, 0.08);
  --footer-white: #ffffff;
  --footer-green: #2eae51;
}

.site-footer {
  width: 100%;
  margin-top: 60px;
  color: var(--footer-text);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--footer-navy);
}

.footer-container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-main {
  position: relative;
  overflow: hidden;
  padding: 65px 0 50px;
  background: linear-gradient(135deg, var(--footer-navy) 0%, var(--footer-navy-light) 100%);
}

/* Pseudo elements removed because image is now full background */

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.85fr) 1.25fr;
  gap: 48px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.footer-brand > p {
  max-width: 330px;
  margin: 0;
  color: var(--footer-muted);
  font-size: 16px;
  line-height: 1.9;
}

.brand-features {
  display: flex;
  margin-top: 30px;
}

.brand-feature {
  position: relative;
  width: 33.333%;
  padding: 0 18px;
  text-align: center;
}

.brand-feature:first-child {
  padding-left: 0;
}

.brand-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 105px;
  background: var(--footer-border);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-size: 24px;
}

.brand-feature strong,
.brand-feature small {
  display: block;
}

.brand-feature strong {
  margin-bottom: 7px;
  color: var(--footer-text);
  font-size: 17px;
}

.brand-feature small {
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-column h3,
.footer-action-area h3 {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--footer-purple);
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 19px;
}

.footer-column a {
  color: var(--footer-text);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column li a:hover {
  display: inline-block;
  color: var(--footer-purple);
  transform: translateX(4px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--footer-text);
  font-size: 15px;
  line-height: 1.6;
}

.contact-item > i {
  flex: 0 0 24px;
  margin-top: 3px;
  color: var(--footer-blue);
  font-size: 21px;
  text-align: center;
}

.contact-item strong {
  font-size: 17px;
}

.contact-link {
  text-decoration: none;
}

.contact-link:hover span {
  color: var(--footer-purple);
}

.footer-action-area {
  padding: 45px 0;
  color: var(--footer-text);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.6),
      transparent 32%
    ),
    linear-gradient(110deg, var(--footer-navy) 0%, var(--footer-navy-light) 55%, var(--footer-navy) 100%);
}

.action-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.75fr 1fr;
  gap: 45px;
}

.action-grid > div:not(:last-child) {
  padding-right: 35px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-action-area h3 {
  margin-bottom: 16px;
  padding: 0;
  font-size: 18px;
}

.quick-order p {
  max-width: 320px;
  margin: 0 0 20px;
  color: var(--footer-muted);
  line-height: 1.7;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
  padding: 15px 22px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #27a946, #5bc565);
  box-shadow: 0 12px 30px rgba(28, 167, 67, 0.22);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 35px rgba(28, 167, 67, 0.3);
}

.whatsapp-button > i {
  font-size: 34px;
}

.whatsapp-button span,
.whatsapp-button strong {
  display: block;
}

.whatsapp-button span {
  font-size: 17px;
  font-weight: 700;
}

.whatsapp-button strong {
  margin-top: 4px;
  font-size: 18px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.area-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--primary-blue);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  font-size: 15px;
  font-weight: 700;
}

.area-list .wide {
  grid-column: span 2;
}

.social-links {
  display: flex;
  gap: 13px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--primary-blue);
  background: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.dealer-card {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    #ffffff,
    #f0f9ff
  );
  color: var(--footer-text);
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.dealer-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
}

.dealer-title i {
  font-size: 34px;
}

.dealer-title strong {
  display: block;
  font-weight: 800;
  color: var(--primary-blue);
}

.dealer-card p {
  margin: 14px 0 0;
  color: var(--footer-muted);
  line-height: 1.7;
}

.footer-payment {
  color: #fff;
  background: var(--footer-navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.payment-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 42px;
  min-height: 92px;
}

.secure-payment {
  display: flex;
  align-items: center;
  gap: 13px;
}

.secure-payment > i {
  font-size: 26px;
}

.secure-payment span,
.secure-payment strong,
.secure-payment small {
  display: block;
}

.secure-payment strong {
  font-size: 14px;
  text-transform: uppercase;
}

.secure-payment small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 43px;
  padding: 0 12px;
  border-radius: 5px;
  color: #131b54;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.cash-payment {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 10px;
  font-size: 14px;
}

.cash-payment i {
  font-size: 24px;
}

.legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: none;
}

.legal-links a:hover {
  color: #fff;
}

.footer-copyright {
  padding: 19px 0;
  color: var(--footer-muted);
  background: #bae6fd;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-row: span 2;
  }

  .action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-grid > div:nth-child(2) {
    border-right: 0;
  }

  .payment-row {
    grid-template-columns: 1fr 1fr;
    padding: 22px 0;
  }

  .legal-links {
    grid-column: span 2;
    justify-content: flex-start;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 768px) {
  .footer-container {
    width: min(100% - 30px, 1440px);
  }

  .footer-main {
    padding: 45px 0 35px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

  .footer-brand {
    grid-column: span 2;
    grid-row: auto;
  }

  .footer-brand > p {
    max-width: 100%;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .action-grid > div:not(:last-child) {
    padding: 0 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .payment-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .legal-links {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 15px 22px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .brand-features {
    flex-direction: column;
    gap: 18px;
  }

  .brand-feature {
    display: grid;
    grid-template-columns: 55px 1fr;
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .brand-feature:not(:last-child)::after {
    display: none;
  }

  .feature-icon {
    grid-row: span 2;
    margin: 0;
  }

  .brand-feature strong,
  .brand-feature small {
    padding-left: 12px;
  }

  .whatsapp-button {
    width: 100%;
    min-width: 0;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .area-list .wide {
    grid-column: auto;
  }

  .payment-methods {
    flex-wrap: wrap;
  }
}

/* Quick Order Section */
.quick-order-section {
    background: #f8fafd;
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 20px;
}
.section-header {
    margin-bottom: 40px;
}
.section-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.section-icon i {
    font-size: 1.5rem;
}
.section-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 15px;
}
.section-wave {
    display: flex;
    justify-content: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: -5px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--secondary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
}
.wishlist-btn:hover {
    color: var(--primary-blue);
}

.product-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
    line-height: 1.3;
    min-height: 40px; /* Aligns titles with 2 lines */
}
.product-desc {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    margin-top: auto; /* Pushes to bottom */
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 15px;
}
.qty-btn {
    background: none;
    border: none;
    color: #555;
    font-size: 1rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover {
    color: var(--primary-blue);
}
.qty-input {
    width: 30px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    background: transparent;
}

.btn-add-cart {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}
.btn-add-cart:hover {
    background: var(--dark-blue);
}

/* Quick Info Banner */
.quick-info-banner {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}
.q-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}
.q-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.q-text {
    display: flex;
    flex-direction: column;
}
.q-text strong {
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.q-text span {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.2;
}
.q-divider {
    width: 1px;
    height: 40px;
    background: #eaeaea;
    margin: 0 20px;
}

/* Whatsapp CTA */
.whatsapp-cta-wrapper {
    display: flex;
    justify-content: center;
}
.whatsapp-cta-pill {
    background: #f0f4f8;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}
.w-cta-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}
.w-cta-left i {
    color: #25D366;
    font-size: 1.5rem;
}
.w-cta-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}
.w-cta-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* Categories Section */
.categories-section {
    position: relative;
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}
.water-splash {
    position: absolute;
    top: 0;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}
.splash-left {
    left: -50px;
    background-image: url('../images/splash-left.png');
}
.splash-right {
    right: -50px;
    background-image: url('../images/splash-right.png');
}

.categories-section .container {
    position: relative;
    z-index: 2;
}

.categories-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
}
.categories-grid::-webkit-scrollbar {
    height: 6px;
}
.categories-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.category-card {
    flex: 1;
    min-width: 140px;
    background: var(--white);
    border: 1px solid #eef2f6;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.category-card:hover, .category-card.active {
    box-shadow: 0 10px 25px rgba(13,59,132,0.1);
    transform: translateY(-5px);
    border-color: #dbeafe;
}

.cat-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.cat-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cat-info {
    padding: 0 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f7ff;
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.category-card:hover .cat-icon, .category-card.active .cat-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.cat-title {
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: auto;
}

.cat-line {
    width: 25px;
    height: 3px;
    background: var(--secondary-blue);
    border-radius: 2px;
    transition: all 0.3s;
}
.category-card:hover .cat-line, .category-card.active .cat-line {
    background: var(--primary-blue);
    width: 40px;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: #fdfdfd;
}
.info-container {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

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

/* Info Left */
.info-left {
    position: relative;
}
.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f0ff;
    color: #6b46c1;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.info-main-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
}
.info-sub-title {
    color: #6b46c1;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.info-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
}
.info-main-img {
    margin-top: 20px;
    position: relative;
    height: 250px;
}
.info-main-img img {
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Info Right */
.info-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.info-card-content {
    flex: 1;
}
.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.info-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f0ff;
    color: #6b46c1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.info-card-title {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
}
.info-card-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}
.info-card-graphic {
    width: 220px;
    flex-shrink: 0;
    text-align: center;
}
.info-card-graphic img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.info-deposit-box {
    background: #f8f6fb;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}
.deposit-icon {
    font-size: 2rem;
    color: #6b46c1;
}
.deposit-text {
    display: flex;
    flex-direction: column;
}
.deposit-text span {
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
}
.deposit-text strong {
    color: #6b46c1;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
}

/* Info Features Row */
.info-features-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #fafafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}
.info-feat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}
.i-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef2f6;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.info-feat h5 {
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.info-feat p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}
.info-feat-divider {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
    margin-top: 10px;
}

/* Info Bottom Banner */
.info-bottom-banner {
    background: #f8fafd;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.i-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
}
.i-banner-left i {
    font-size: 1.3rem;
}
.btn-info-whatsapp {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-info-whatsapp:hover {
    background: var(--dark-blue);
    color: var(--white);
}
.btn-info-whatsapp i {
    font-size: 1.6rem;
}
.btn-info-text {
    display: flex;
    flex-direction: column;
}
.btn-info-text span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
}
.btn-info-text strong {
    font-size: 1rem;
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Mobile Responsiveness Fixes --- */
@media (max-width: 992px) {
    .top-bar-new { display: block; padding: 10px 0; }
    .top-bar-inner { flex-direction: column; gap: 8px; justify-content: center; text-align: center; }
    .top-bar-center { justify-content: center; font-size: 0.8rem; }
    .top-bar-right { flex-direction: column; gap: 5px; align-items: center; justify-content: center; font-size: 0.8rem; }
    
    .main-header-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-area {
        order: 1;
        flex: none;
        text-align: center;
    }
    
    .header-actions {
        order: 2;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 15px;
    }

    .search-area {
        order: 3;
        margin-top: 5px;
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        flex-direction: column;
        align-items: stretch;
        position: relative;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-right {
        display: none;
    }

    .slide-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
        margin-bottom: 2rem;
    }
    
    .hero-slider {
        min-height: auto;
    }

    .hero-slide {
        background-size: 100% auto !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
        min-height: auto !important;
        padding: 50vw 15px 15px 15px;
        background-color: #fdfdfd;
    }
    
    .hero-bottom-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 15px;
        flex-direction: column;
        margin: -10vw auto 0 auto;
        z-index: 20;
    }
    
    .horizontal-features {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .mini-feat-divider {
        display: none;
    }
    
    .hero-center {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .hero-right {
        order: 3;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .feat-divider {
        width: 100%;
        height: 1px;
    }
    
    .quick-info-banner {
        flex-direction: column;
        gap: 15px;
    }
    
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        overflow: visible;
    }
    
    .category-card {
        min-width: 0;
        padding: 20px 10px;
    }
    
    .cat-title {
        font-size: 1rem;
    }
    
    .q-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .info-top-grid {
        grid-template-columns: 1fr;
    }
    
    .info-features-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-feat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .info-bottom-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-cursive {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .whatsapp-cta-pill {
        flex-direction: column;
        padding: 15px;
        border-radius: 16px;
        text-align: center;
    }
    
    .category-card {
        min-width: 120px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-card-header {
        flex-direction: column;
    }
}

/* =========================================
   PRODUCT DETAIL PAGE STYLES
   ========================================= */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.main-product-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image-wrapper:hover .main-product-image {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumb-item {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.thumb-item img {
    max-width: 100%;
    max-height: 100%;
}

.thumb-item:hover, .thumb-item.active {
    border-color: var(--primary-pink);
}

.detail-product-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 800;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
}

.review-count {
    color: #666;
    font-size: 0.9rem;
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
}

.price-deposit {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-short-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 2rem;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.feature-item span {
    color: #666;
    font-size: 0.9rem;
}

.add-to-cart-box {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 5px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: transparent;
}
.qty-input:focus {
    outline: none;
}
/* Hide arrows in input number */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-cart {
    flex: 1;
    background: var(--primary-blue);
    font-size: 1.1rem;
    border-radius: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,51,160,0.2);
}

.btn-add-cart:hover {
    background: #002277;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0,51,160,0.3);
}

.btn-whatsapp-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.btn-whatsapp-full:hover {
    background: #1ebc5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37,211,102,0.3);
}

.product-meta {
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.product-meta p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.product-meta p a {
    color: var(--primary-pink);
    text-decoration: none;
}
.product-meta p a i {
    color: #666;
    font-size: 1.2rem;
    margin-right: 8px;
    transition: color 0.3s ease;
}
.product-meta p a:hover i {
    color: var(--primary-pink);
}

/* Tabs Section */
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
}

.tab-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    padding: 10px 25px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-pink);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-blue);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-pane {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-pane h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.analysis-table {
    width: 100%;
    border-collapse: collapse;
}

.analysis-table th, .analysis-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}

.analysis-table th {
    background: var(--light-blue);
    color: var(--primary-blue);
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-gallery {
        position: relative;
        top: 0;
    }
    .add-to-cart-box {
        flex-direction: column;
    }
    .tabs-header {
        flex-wrap: wrap;
    }
    .detail-product-title {
        font-size: 2rem;
    }
}

/* Slider Etiket Icon */
.slider-etiket-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
    height: auto;
    border-radius: 12px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .slider-etiket-icon {
        top: 15px;
        left: 15px;
        width: 60px;
        border-radius: 8px;
    }
}
