/* ============================================================================
   MOBILE PLANET – PREMIUM E-COMMERCE THEME v2.0
   A luxury-grade digital device storefront
   ============================================================================ */

/* ===== CSS Variables ===== */
:root {
    --navy:        #0a1628;
    --navy-deep:   #060e1a;
    --navy-light:  #132042;
    --navy-mid:    #1b2d52;
    --accent:      #3b82f6;
    --accent-soft: #60a5fa;
    --accent-glow: rgba(59,130,246,0.25);
    --gold:        #f59e0b;
    --gold-soft:   #fbbf24;
    --whatsapp:    #25D366;
    --wa-hover:    #20bd5a;
    --wa-glow:     rgba(37,211,102,0.35);
    --white:       #ffffff;
    --off-white:   #f8fafc;
    --gray-50:     #f1f5f9;
    --gray-100:    #e2e8f0;
    --gray-200:    #cbd5e1;
    --gray-400:    #94a3b8;
    --gray-600:    #475569;
    --gray-800:    #1e293b;
    --text:        #0f172a;
    --text-soft:   #64748b;
    --glass:       rgba(255,255,255,0.06);
    --glass-border:rgba(255,255,255,0.08);
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
    --shadow:      0 4px 20px rgba(0,0,0,0.06);
    --shadow-md:   0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg:   0 20px 60px rgba(0,0,0,0.10);
    --shadow-xl:   0 25px 80px rgba(0,0,0,0.14);
    --radius-sm:   8px;
    --radius:      14px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --bounce:      cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; }
::selection { background: var(--accent); color: #fff; }

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-weight: 400;
    padding: 8px 0;
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.top-bar a:hover { color: var(--whatsapp); }
.top-bar i { font-size: 0.85rem; }

/* ===== Navbar ===== */
.main-navbar {
    background: rgba(10, 22, 40, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1050;
    transition: all 0.4s var(--ease);
}
.main-navbar.scrolled {
    background: rgba(10, 22, 40, 0.98) !important;
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.navbar-logo {
    width: 44px; height: 44px;
    object-fit: contain; border-radius: 10px;
    background: rgba(255,255,255,0.95);
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s var(--bounce);
}
.navbar-brand:hover .navbar-logo { transform: scale(1.08) rotate(-2deg); }
.brand-text { font-size: 1.12rem; font-weight: 700; color: #fff; letter-spacing: 0.3px; }

.main-navbar .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500; font-size: 0.88rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.25s var(--ease);
}
.main-navbar .nav-link::after {
    content: ''; position: absolute;
    bottom: 2px; left: 50%;
    width: 0; height: 2px;
    background: var(--accent); border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform: translateX(-50%);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: #fff !important; }
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: 60%; }

.main-navbar .dropdown-menu {
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px; margin-top: 10px !important;
    animation: dropIn 0.25s var(--ease);
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.main-navbar .dropdown-item {
    border-radius: var(--radius-sm); padding: 10px 16px;
    font-size: 0.88rem; font-weight: 500; color: var(--gray-600);
    transition: all 0.2s var(--ease);
}
.main-navbar .dropdown-item:hover {
    background: var(--navy); color: #fff; transform: translateX(4px);
}

.main-navbar .form-control {
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.82rem;
    background: rgba(255,255,255,0.08);
    color: #fff; padding: 6px 16px; width: 180px;
    transition: all 0.3s var(--ease);
}
.main-navbar .form-control::placeholder { color: rgba(255,255,255,0.45); }
.main-navbar .form-control:focus {
    background: #fff; color: var(--text);
    box-shadow: 0 0 0 3px var(--accent-glow);
    border-color: var(--accent); width: 220px;
}
.main-navbar .btn-light { border-radius: 0 50px 50px 0; border: none; padding: 6px 14px; }

/* ===== Buttons ===== */
.btn-whatsapp {
    background: var(--whatsapp); color: #fff; border: none;
    font-weight: 600; border-radius: var(--radius-sm);
    position: relative; overflow: hidden;
    transition: all 0.3s var(--ease); z-index: 1;
}
.btn-whatsapp::before {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s var(--ease); z-index: -1;
}
.btn-whatsapp:hover {
    background: var(--wa-hover); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--wa-glow);
}
.btn-whatsapp:hover::before { left: 100%; }

.btn-primary-custom {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff; border: none; font-weight: 600;
    border-radius: var(--radius-sm); padding: 12px 32px;
    transition: all 0.3s var(--ease);
}
.btn-primary-custom:hover {
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10,22,40,0.25);
}

.btn-hero {
    background: #fff; color: var(--navy);
    font-weight: 700; font-size: 1rem;
    border-radius: 50px; padding: 14px 40px; border: none;
    transition: all 0.3s var(--ease);
}
.btn-hero:hover {
    color: #fff; background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59,130,246,0.35);
}
.btn-hero-outline {
    background: transparent; color: #fff;
    font-weight: 600; font-size: 0.95rem;
    border-radius: 50px; padding: 13px 32px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s var(--ease);
}
.btn-hero-outline:hover {
    color: #fff; border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.bg-primary-custom { background: var(--navy) !important; }
.badge.bg-primary-custom { background: var(--navy) !important; }

/* ===== Hero — Animated Gradient + Floating Products ===== */
.hero-animated {
    position: relative; overflow: hidden;
    min-height: 660px; display: flex; align-items: center;
}
.min-vh-hero { min-height: 620px; }

/* ---- Animated gradient background ---- */
.hero-gradient {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(
        135deg,
        #060e1a 0%,
        #0a1628 20%,
        #0f1e3a 40%,
        #132042 55%,
        #1b2d52 70%,
        #0d2847 85%,
        #060e1a 100%
    );
    background-size: 400% 400%;
    animation: heroGradientShift 12s ease infinite;
}
@keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 100% 25%; }
    50%  { background-position: 100% 50%; }
    75%  { background-position: 0% 75%; }
    100% { background-position: 0% 50%; }
}

/* ---- Floating orbs (ambient light) ---- */
.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.45;
}
.hero-orb-1 {
    width: 500px; height: 500px; top: -120px; right: -80px;
    background: radial-gradient(circle, rgba(59,130,246,0.55) 0%, transparent 70%);
    animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px; bottom: -100px; left: -60px;
    background: radial-gradient(circle, rgba(139,92,246,0.4) 0%, transparent 70%);
    animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
    width: 300px; height: 300px; top: 40%; left: 35%;
    background: radial-gradient(circle, rgba(245,158,11,0.25) 0%, transparent 70%);
    animation: orbFloat3 12s ease-in-out infinite;
}
.hero-orb-4 {
    width: 250px; height: 250px; top: 10%; right: 30%;
    background: radial-gradient(circle, rgba(37,211,102,0.2) 0%, transparent 70%);
    animation: orbFloat4 9s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-40px, 30px) scale(1.1); }
    66%      { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(50px, -40px) scale(1.15); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(30px, 20px); }
    66%      { transform: translate(-20px, -30px); }
}
@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-30px, 25px) scale(1.1); }
}

/* ---- Subtle dot grid overlay ---- */
.hero-grid-bg {
    position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.04;
    background-image: radial-gradient(rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* ---- Floating micro particles ---- */
.hero-particles {
    position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-particles span {
    position: absolute; display: block;
    width: 3px; height: 3px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: particleRise linear infinite;
}
.hero-particles span:nth-child(1)  { left: 8%;  bottom: -5%; animation-duration: 9s;  animation-delay: 0s;   width: 4px; height: 4px; }
.hero-particles span:nth-child(2)  { left: 18%; bottom: -5%; animation-duration: 11s; animation-delay: 1s;   }
.hero-particles span:nth-child(3)  { left: 30%; bottom: -5%; animation-duration: 8s;  animation-delay: 2.5s; width: 2px; height: 2px; }
.hero-particles span:nth-child(4)  { left: 42%; bottom: -5%; animation-duration: 13s; animation-delay: 0.5s; }
.hero-particles span:nth-child(5)  { left: 55%; bottom: -5%; animation-duration: 10s; animation-delay: 3s;   width: 5px; height: 5px; background: rgba(59,130,246,0.4); }
.hero-particles span:nth-child(6)  { left: 65%; bottom: -5%; animation-duration: 7s;  animation-delay: 1.5s; }
.hero-particles span:nth-child(7)  { left: 75%; bottom: -5%; animation-duration: 12s; animation-delay: 4s;   width: 2px; height: 2px; }
.hero-particles span:nth-child(8)  { left: 82%; bottom: -5%; animation-duration: 9s;  animation-delay: 2s;   background: rgba(245,158,11,0.35); }
.hero-particles span:nth-child(9)  { left: 90%; bottom: -5%; animation-duration: 14s; animation-delay: 0.8s; }
.hero-particles span:nth-child(10) { left: 50%; bottom: -5%; animation-duration: 11s; animation-delay: 3.5s; width: 4px; height: 4px; background: rgba(139,92,246,0.3); }
@keyframes particleRise {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-110vh) scale(0.3); opacity: 0; }
}

/* ---- Hero text content ---- */
.hero-text-col { position: relative; z-index: 5; padding: 60px 0; }
.hero-animated .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--gold-soft);
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 8px 20px; border-radius: 50px; margin-bottom: 20px;
    animation: fadeSlideIn 0.8s ease both;
}
.hero-animated .hero-title {
    font-size: 3.4rem; font-weight: 800; color: #fff;
    line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.5px;
    animation: fadeSlideIn 0.8s ease 0.15s both;
}
.hero-animated .gradient-text {
    background: linear-gradient(135deg, var(--accent-soft), #a78bfa, var(--gold-soft));
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientMove 4s ease infinite;
}
@keyframes textGradientMove {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.hero-animated .hero-subtitle {
    font-size: 1.05rem; color: rgba(255,255,255,0.65);
    margin-bottom: 32px; line-height: 1.75; max-width: 500px;
    animation: fadeSlideIn 0.8s ease 0.3s both;
}
.hero-animated .hero-buttons {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    animation: fadeSlideIn 0.8s ease 0.45s both;
}
.hero-animated .hero-stats {
    display: flex; gap: 40px; margin-top: 48px;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
    animation: fadeSlideIn 0.8s ease 0.6s both;
}
.hero-animated .hero-stat h3 {
    font-size: 1.75rem; font-weight: 800; color: #ffffff;
    margin: 0; line-height: 1;
}
.hero-animated .hero-stat h3 span {
    color: var(--gold-soft); font-weight: 700;
}
.hero-animated .hero-stat p {
    font-size: 0.78rem; color: rgba(255,255,255,0.75);
    margin: 6px 0 0; font-weight: 500; letter-spacing: 0.3px;
    text-transform: uppercase;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Floating product showcase ---- */
.hero-float-zone {
    position: relative; width: 100%; height: 520px;
    display: flex; align-items: center; justify-content: center;
}
.hero-glow-ring {
    position: absolute;
    width: 320px; height: 320px;
    border: 2px solid rgba(59,130,246,0.15);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px rgba(59,130,246,0.12), inset 0 0 60px rgba(59,130,246,0.06);
    animation: glowPulse 4s ease-in-out infinite;
}
.hero-glow-ring::before {
    content: ''; position: absolute; inset: -30px;
    border: 1px solid rgba(139,92,246,0.08);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out 0.5s infinite;
}
.hero-glow-ring::after {
    content: ''; position: absolute; inset: 25px;
    border: 1px solid rgba(245,158,11,0.1);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out 1s infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

.hero-float-item {
    position: absolute;
    width: 110px; height: 110px;
    border-radius: 20px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    overflow: hidden;
}
.hero-float-item:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 12px 40px rgba(59,130,246,0.25);
    border-color: rgba(59,130,246,0.3);
    z-index: 10;
}
.hero-float-item img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 12px;
}

/* Positions & animations for up to 6 floating items */
.hero-float-1 {
    top: 8%; left: 10%;
    animation: floatItem1 6s ease-in-out infinite, fadeFloatIn 1s ease 0.2s both;
}
.hero-float-2 {
    top: 5%; right: 12%;
    animation: floatItem2 7s ease-in-out infinite, fadeFloatIn 1s ease 0.4s both;
    width: 120px; height: 120px;
}
.hero-float-3 {
    top: 42%; left: 2%;
    animation: floatItem3 5.5s ease-in-out infinite, fadeFloatIn 1s ease 0.6s both;
    width: 100px; height: 100px;
}
.hero-float-4 {
    top: 38%; right: 5%;
    animation: floatItem4 8s ease-in-out infinite, fadeFloatIn 1s ease 0.8s both;
    width: 115px; height: 115px;
}
.hero-float-5 {
    bottom: 12%; left: 15%;
    animation: floatItem5 6.5s ease-in-out infinite, fadeFloatIn 1s ease 1s both;
    width: 105px; height: 105px;
}
.hero-float-6 {
    bottom: 8%; right: 15%;
    animation: floatItem6 7.5s ease-in-out infinite, fadeFloatIn 1s ease 1.2s both;
}

@keyframes fadeFloatIn {
    from { opacity: 0; transform: scale(0.5) translateY(30px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes floatItem1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-18px) rotate(3deg); }
}
@keyframes floatItem2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-22px) rotate(-4deg); }
}
@keyframes floatItem3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(10px, -15px) rotate(2deg); }
    66%      { transform: translate(-8px, -8px) rotate(-2deg); }
}
@keyframes floatItem4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-20px) rotate(5deg); }
}
@keyframes floatItem5 {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(12px, -16px); }
}
@keyframes floatItem6 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%      { transform: translateY(-14px) rotate(-3deg); }
    66%      { transform: translateY(-8px) rotate(2deg); }
}

/* ---- Hero responsive ---- */
@media (max-width: 991px) {
    .hero-animated { min-height: 520px; }
    .min-vh-hero { min-height: 480px; }
    .hero-animated .hero-title { font-size: 2.5rem; }
    .hero-animated .hero-stats { gap: 24px; }
    .hero-animated .hero-stat h3 { font-size: 1.4rem; }
}
@media (max-width: 767px) {
    .hero-animated { min-height: 460px; }
    .min-vh-hero { min-height: 420px; }
    .hero-text-col { padding: 40px 0; }
    .hero-animated .hero-title { font-size: 2rem; }
    .hero-animated .hero-subtitle { font-size: 0.92rem; }
    .hero-animated .hero-buttons { flex-direction: column; }
    .hero-animated .hero-buttons .btn { width: 100%; }
    .hero-animated .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-animated .hero-stat h3 { font-size: 1.2rem; }
}
@media (max-width: 575px) {
    .hero-animated { min-height: 400px; }
    .hero-animated .hero-title { font-size: 1.65rem; }
    .hero-animated .hero-tag { font-size: 0.65rem; padding: 6px 14px; }
}

/* ===== Sections ===== */
.section-padding { padding: 90px 0; }
.section-header { margin-bottom: 50px; }
.section-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--accent); margin-bottom: 10px;
}
.section-title {
    font-size: 2.2rem; font-weight: 800;
    color: var(--navy); letter-spacing: -0.3px; line-height: 1.2;
}
.section-title.text-white { color: #fff; }
.section-line {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 3px; margin: 16px auto 0;
}
.section-line.left { margin-left: 0; }
.section-subtitle { font-size: 1rem; color: var(--text-soft); margin-top: 14px; max-width: 540px; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
    padding: 55px 0 45px; color: #fff;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}
.page-header-sm { padding: 32px 0 28px; }
.page-header-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.page-header .breadcrumb { font-size: 0.82rem; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.page-header .breadcrumb-item a:hover { color: var(--accent-soft); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ===== Category Cards ===== */
.category-card .card {
    border-radius: var(--radius); border: 1px solid var(--gray-100);
    background: var(--white); transition: all 0.35s var(--ease); overflow: hidden;
}
.category-card:hover .card {
    transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent);
}
.category-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto; transition: all 0.35s var(--ease);
}
.category-icon i { font-size: 1.5rem; color: #fff; }
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    transform: scale(1.1) rotate(-5deg); border-radius: 20px;
}
.category-name { font-weight: 600; color: var(--text); font-size: 0.88rem; }

/* ===== Product Cards ===== */
.product-card {
    border-radius: var(--radius); border: 1px solid var(--gray-100);
    background: var(--white); overflow: hidden;
    transition: all 0.35s var(--ease); position: relative;
}
.product-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.product-img-link {
    display: block; overflow: hidden; position: relative; background: var(--gray-50);
}
.product-img {
    height: 230px; object-fit: cover; width: 100%;
    transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.08); }
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--accent); color: #fff;
    font-size: 0.68rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}
.product-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s var(--ease);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-quick-view {
    position: absolute; bottom: 12px; left: 50%;
    transform: translateX(-50%) translateY(10px); opacity: 0;
    transition: all 0.3s var(--ease) 0.1s;
    background: #fff; color: var(--navy);
    font-weight: 600; font-size: 0.78rem;
    padding: 8px 20px; border-radius: 50px; white-space: nowrap;
    border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-decoration: none;
}
.product-card:hover .product-quick-view { opacity: 1; transform: translateX(-50%) translateY(0); }

.product-category {
    display: inline-block; font-size: 0.7rem;
    color: var(--accent); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 5px;
}
.product-name { font-size: 0.9rem; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.product-name a { color: var(--text); text-decoration: none; }
.product-name a:hover { color: var(--accent); }
.product-price { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }

/* ===== Product Detail ===== */
.product-detail-img {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; background: var(--gray-50);
}
.product-detail-img img {
    width: 100%; object-fit: cover; max-height: 520px;
    border-radius: var(--radius-lg); transition: transform 0.4s var(--ease);
}
.product-detail-img:hover img { transform: scale(1.03); }
.product-detail-title {
    font-size: 1.9rem; font-weight: 800; color: var(--text);
    letter-spacing: -0.3px; line-height: 1.2;
}
.product-detail-price {
    font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-top: 8px;
}
.product-detail-desc { color: var(--text-soft); line-height: 1.85; }
.meta-item {
    display: flex; align-items: center;
    padding: 10px 14px; background: var(--gray-50);
    border-radius: var(--radius-sm); gap: 10px;
    transition: all 0.25s var(--ease);
}
.meta-item:hover { background: var(--accent-glow); }
.product-detail-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ===== Shop Sidebar ===== */
.shop-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: var(--white); border-radius: var(--radius);
    padding: 24px; margin-bottom: 20px;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.widget-title {
    font-weight: 700; font-size: 1rem; color: var(--navy);
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}
.widget-title::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 40px; height: 2px; background: var(--accent);
}
.category-filter-list { list-style: none; padding: 0; margin: 0; }
.category-filter-list li { margin-bottom: 3px; }
.category-filter-list a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 14px; color: var(--text); text-decoration: none;
    border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500;
    transition: all 0.25s var(--ease);
}
.category-filter-list a:hover,
.category-filter-list a.active { background: var(--navy); color: #fff; }
.category-filter-list .badge {
    background: var(--gray-100); color: var(--text-soft);
    font-size: 0.72rem; font-weight: 600; border-radius: 50px; padding: 3px 10px;
}
.category-filter-list a.active .badge,
.category-filter-list a:hover .badge { background: rgba(255,255,255,0.15); color: #fff; }
.sidebar-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff; border: none;
}
.sidebar-cta h5 { color: #fff; font-weight: 700; }
.sidebar-cta p { color: rgba(255,255,255,0.75); }

/* ===== Shop Toolbar ===== */
.shop-toolbar {
    background: var(--white); padding: 14px 22px;
    border-radius: var(--radius); border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

/* ===== Features / Why Choose Us ===== */
.bg-dark-blue {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
    position: relative; overflow: hidden;
}
.bg-dark-blue::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}
.bg-dark-blue::after {
    content: ''; position: absolute; bottom: -80px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}
.feature-card-premium {
    text-align: center; padding: 40px 24px;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); backdrop-filter: blur(10px);
    transition: all 0.35s var(--ease); position: relative; z-index: 1;
}
.feature-card-premium:hover {
    transform: translateY(-6px); background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.feature-icon-premium {
    width: 72px; height: 72px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.8rem; color: #fff;
}
.feature-icon-premium.blue { background: linear-gradient(135deg, var(--accent), #2563eb); box-shadow: 0 8px 25px rgba(59,130,246,0.3); }
.feature-icon-premium.green { background: linear-gradient(135deg, var(--whatsapp), #16a34a); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.feature-icon-premium.gold { background: linear-gradient(135deg, var(--gold), #d97706); box-shadow: 0 8px 25px rgba(245,158,11,0.3); }
.feature-icon-premium.purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 8px 25px rgba(139,92,246,0.3); }

/* Legacy feature support */
.feature-icon {
    width: 72px; height: 72px; border-radius: 20px;
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.feature-icon i { font-size: 1.8rem; color: var(--accent-soft); }
.feature-card h5 { font-weight: 700; margin-top: 8px; }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--whatsapp), #16a34a);
    padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute;
    top: -30%; right: -10%; width: 400px; height: 400px;
    background: rgba(255,255,255,0.08); border-radius: 50%;
}
.cta-section::after {
    content: ''; position: absolute;
    bottom: -40%; left: -5%; width: 350px; height: 350px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}

/* ===== Trust Badges ===== */
.trust-badge {
    display: flex; align-items: center; gap: 14px;
    padding: 20px; background: var(--white);
    border: 1px solid var(--gray-100); border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}
.trust-badge:hover {
    box-shadow: var(--shadow-md); border-color: var(--accent);
    transform: translateY(-3px);
}
.trust-badge-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--navy-deep); color: #fff;
    padding: 70px 0 30px; position: relative;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--whatsapp));
}
.footer-logo {
    width: 60px; height: 60px; object-fit: contain;
    border-radius: 14px; background: #fff; padding: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.footer-heading {
    font-weight: 700; color: #fff; margin-bottom: 22px;
    font-size: 0.92rem; text-transform: uppercase;
    letter-spacing: 1.5px; position: relative; padding-bottom: 12px;
}
.footer-heading::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 30px; height: 2px; background: var(--accent); border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 0.88rem; font-weight: 400;
    transition: all 0.25s var(--ease);
    display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a::before {
    content: '\203A'; opacity: 0; transform: translateX(-5px);
    transition: all 0.25s var(--ease);
}
.footer-links a:hover { color: var(--accent-soft); transform: translateX(4px); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    color: rgba(255,255,255,0.55); font-size: 0.88rem;
    margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact i { color: var(--accent-soft); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6); font-size: 1rem;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--accent); color: #fff; border-color: var(--accent);
    transform: translateY(-3px); box-shadow: 0 6px 20px rgba(59,130,246,0.25);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px; margin-top: 40px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 62px; height: 62px;
    background: var(--whatsapp); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    z-index: 9999; transition: all 0.3s var(--ease);
    animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
    color: #fff; transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}
.whatsapp-float::after {
    content: 'Chat with us'; position: absolute; right: 72px;
    background: #fff; color: var(--text);
    font-size: 0.78rem; font-weight: 600;
    padding: 8px 16px; border-radius: 8px; white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0; transform: translateX(10px);
    transition: all 0.3s var(--ease); pointer-events: none;
}
.whatsapp-float:hover::after { opacity: 1; transform: translateX(0); }
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Page Content ===== */
.page-content { line-height: 1.9; font-size: 1rem; color: var(--text-soft); }
.page-content h3, .page-content h4, .page-content h5 {
    color: var(--navy); margin-top: 28px; margin-bottom: 14px; font-weight: 700;
}
.page-content ul { padding-left: 20px; }
.page-content li { margin-bottom: 8px; }

/* ===== Pagination ===== */
.pagination .page-link {
    color: var(--navy); border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm) !important;
    margin: 0 3px; font-weight: 600; font-size: 0.88rem;
    transition: all 0.25s var(--ease); padding: 8px 14px;
}
.pagination .page-item.active .page-link {
    background: var(--navy); border-color: var(--navy); color: #fff;
    box-shadow: 0 4px 12px rgba(10,22,40,0.2);
}
.pagination .page-link:hover { background: var(--gray-50); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-slide { min-height: 450px; }
    .hero-title { font-size: 2.3rem; }
    .hero-stats { gap: 24px; }
    .hero-stat h3 { font-size: 1.4rem; }
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .product-img { height: 190px; }
    .page-header-title { font-size: 1.8rem; }
}
@media (max-width: 767px) {
    .hero-slide { min-height: 400px; }
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.92rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat h3 { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .section-padding { padding: 50px 0; }
    .section-title { font-size: 1.55rem; }
    .product-img { height: 170px; }
    .product-name { font-size: 0.82rem; }
    .product-price { font-size: 0.92rem; }
    .btn-whatsapp.btn-sm { font-size: 0.75rem; padding: 7px 12px; }
    .product-detail-title { font-size: 1.45rem; }
    .product-detail-price { font-size: 1.6rem; }
    .top-bar { font-size: 0.72rem; }
    .brand-text { font-size: 0.95rem; }
    .whatsapp-float { width: 54px; height: 54px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .whatsapp-float::after { display: none; }
    .cta-section { padding: 50px 0; }
}
@media (max-width: 575px) {
    .hero-slide { min-height: 360px; }
    .hero-title { font-size: 1.55rem; }
    .hero-tag { font-size: 0.68rem; padding: 6px 14px; }
    .product-img { height: 145px; }
    .product-card .card-body { padding: 12px; }
    .product-name { font-size: 0.78rem; }
    .product-price { font-size: 0.88rem; margin-bottom: 10px; }
    .btn-hero { padding: 11px 28px; font-size: 0.88rem; }
    .page-header { padding: 40px 0 30px; }
    .page-header-title { font-size: 1.5rem; }
    .feature-card-premium { padding: 28px 18px; }
}

/* ===== Utility ===== */
.bg-light { background: var(--off-white) !important; }
.bg-soft { background: var(--gray-50); }
.text-accent { color: var(--accent) !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fw-800 { font-weight: 800 !important; }
