﻿:root {
    --bg: #f4f7fb;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-strong: rgba(245, 247, 250, 0.98);
    --text: #0f172a;
    --muted: #64748b;
    --accent: #ff7a18;
    --accent-2: #3dd4ff;
    --accent-3: #ffd75a;
    --border: rgba(15, 23, 42, 0.10);
    --shadow: 0 32px 90px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #ff7a18 0%, #ff9a4d 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    box-sizing: border-box;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    /*border: 1px solid #f0f0f0;*/
    border-left:2px orange solid;
}


.star-rating {
    font-size: 30px;
    color: #FFD700;
}

.star-rating input[type="radio"] {
    margin-right: 5px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 42px;
    color: #ff6b00;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 13px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.btn-whatsapp {
    display: inline-block;
    margin-left: 15px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(61, 212, 255, 0.14), transparent 22%), radial-gradient(circle at bottom right, rgba(255, 122, 24, 0.10), transparent 18%), linear-gradient(180deg, #f4f7fb 0%, #eff3f8 100%);
    color: var(--text);
    overflow-x: hidden;
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.45) 0%, transparent 32%), radial-gradient(circle at 75% 78%, rgba(61, 212, 255, 0.16) 0%, transparent 24%);
        pointer-events: none;
        opacity: 0.85;
        animation: float 20s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
a {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .4s ease;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    top: 0px;
    right: 15px;
    padding: 2px 10px;
    border-radius: 50px;
    background: linear-gradient(135deg,#ff7a00,#ffb300);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(255,122,0,.35);
}

.product-content {
    padding: 5px;
}

.product-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.brand {
    color: #ff7a00;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
}

.info {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.info span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info i {
    color: #ff7a00;
    width: 18px;
}

.product-btn {
    width: 100%;
    margin-top: 20px;
    border: none;
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient(135deg,#ff7a00,#ff9500);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,122,0,.35);
}

.txt-monospace{
    color: bisque;
    font-family: 'Cambria Math';
}

.footer-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

    .header:hover {
        background: rgba(255, 255, 255, 0.35);
    }

.header-top {
    padding: 0.1rem 0;
}

    .header-top .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--accent);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.1);
    }
}

.logo span {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 0rem;
    flex: 1;
    max-width: 400px;
    margin: 0 0.1rem;
    transition: all 0.3s ease;
}

    .search-bar:focus-within {
        background: rgba(255, 255, 255, 0.4);
        border-color: var(--accent);
        box-shadow: 0 0 20px rgba(255, 122, 24, 0.2);
    }

    .search-bar input {
        border: none;
        background: transparent;
        flex: 1;
        outline: none;
        padding: 0.5rem;
        color: var(--text);
        font-size: 0.9rem;
    }

        .search-bar input::placeholder {
            color: var(--muted);
            opacity: 0.7;
        }

    .search-bar button {
        background: var(--gradient-accent);
        color: white;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 122, 24, 0.3);
    }

        .search-bar button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 122, 24, 0.4);
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.header-link {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .header-link:hover {
        color: var(--accent);
        background: rgba(255, 122, 24, 0.1);
        transform: translateY(-1px);
    }

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text);
        margin: 3px 0;
        transition: 0.3s;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

.main-nav {
    background: #1a1a1a;
    border-top: 2px solid var(--accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}

    .nav-list li {
        margin: 0;
    }

    .nav-list a {
        display: block;
        padding: 0.5rem 0.5rem;
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        border-bottom: 3px solid transparent;
        font-size: 14px;
    }

        .nav-list a:hover {
            color: var(--accent);
            background: rgba(255, 122, 24, 0.1);
            border-bottom-color: var(--accent);
            transform: translateY(-2px);
        }

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0 1rem;
    background: #f7ebd5;
}

.slider-container {
    position: relative;
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-content {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

    .btn::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;
    }

    .btn:hover::before {
        left: 100%;
    }

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 122, 24, 0.3);
}

    .btn-primary:hover {
        background: var(--gradient-accent);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 122, 24, 0.4);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: white;
        color: var(--accent);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }

.hero-image {
    text-align: center;
}

.hero-placeholder {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

    .hero-placeholder:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
    }

    .hero-placeholder i {
        font-size: 3rem;
        margin-bottom: 0.75rem;
        opacity: 0.9;
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-placeholder p {
        font-size: 0.9rem;
        opacity: 0.9;
        font-weight: 500;
    }

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .slider-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: white;
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    .dot:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }

/* Marquee Section */
.marquee-section {
    padding: 1rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(61, 212, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.marquee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

    .marquee-header h2 {
        font-size: 1.0rem;
        font-weight: 700;
        color: var(--text);
        margin: 0;
    }

.marquee-controls {
    display: flex;
    gap: 1rem;
}

.marquee-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: var(--text);
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .marquee-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 122, 24, 0.2);
    }

    .marquee-btn:active {
        transform: translateY(0);
    }

.marquee-container {
    /*overflow: hidden;*/
    position: relative;
    height: 150px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-wrapper {
    position: relative;
    height: 100%;
}

.marquee-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item {
    flex: 0 0 200px;
    height: 100%;
    margin-right: 1rem;
    border-radius: 10px;
    overflow: hidden;
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
    box-shadow: rgb(255 146 63) 0px 4px 7px 0px !important;
    transition: transform 0.3s ease;
}

    .marquee-item:hover {
        transform: scale(1.05);
    }

    .marquee-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .marquee-item:hover img {
        transform: scale(1.1);
    }

/* Responsive */
@media (max-width: 1024px) {
    .marquee-item {
        flex: 0 0 180px;
    }

    .marquee-container {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .marquee-section {
        padding: 3rem 1rem;
    }

    .marquee-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

        .marquee-header h2 {
            font-size: 2rem;
        }

    .marquee-item {
        flex: 0 0 150px;
    }

    .marquee-container {
        height: 150px;
    }

    .marquee-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Categories */

/* Categories */
.categories {
    padding: 0.1rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

    .categories::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(61, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 122, 24, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .categories h2 {
        text-align: center;
        margin-bottom: 0.8rem;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text);
        position: relative;
        z-index: 2;
    }

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}
.category-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;

    width: 130px;      /* reduce card width */
    margin: auto;      /* center card */
}
    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-accent);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .category-card:hover::before {
        opacity: 0.05;
    }

    .category-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-lg);
        border-color: var(--accent);
    }

    .category-card i {
        font-size: 2.0rem;
        color: var(--accent);
        margin-bottom: 0.2rem;
        margin-top: 10px;
        transition: all 0.3s ease;
    }

    .category-card:hover i {
        transform: scale(1.1);
        color: var(--accent-2);
    }

    .category-card h3 {
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
        font-weight: 600;
        margin-top: 5px;
    }

    .category-card p {
        color: var(--muted);
        /* margin-bottom: 2rem; */
        /* line-height: 1.6; */
        font-size: 12px;
        margin-bottom: 0.1rem;
    margin-top: 0.1rem;
    }

/* Featured */
.featured {
    padding: 0.1rem 0;
    background: var(--bg);
}

    .featured h2 {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text);
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-accent);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .product-card:hover::before {
        transform: scaleX(1);
    }

    .product-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-lg);
        border-color: var(--accent);
    }

.product-image {
    height: 160px;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
        box-shadow: inset rgb(161 155 155) -1px -1px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .product-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-accent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.product-card:hover .product-image::before {
    opacity: 0.1;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.qty-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin:20px 0;
}

.qty-btn{
    width:40px;
    height:40px;
    border:none;
    border-radius:12px;
    background:#f5f5f5;
    color:#333;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.qty-btn:hover{
    background:#ff7a00;
    color:#fff;
}

.qty-input{
    width:60px;
    height:40px;
    text-align:center;
    border:2px solid #eee;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    outline:none;
}

.whatsapp-fixed {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.whatsapp-fixed a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.whatsapp-fixed i {
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-number {
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 0 8px 8px 0;
    margin-left: -5px;
    white-space: nowrap;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    visibility: hidden;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 10px 18px;
    height: 40px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg,#ff7b00,#ff9800);
    color: #fff !important;
    transition: all 0.3s ease;
}

.product-btn i {
    margin-right: 6px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    border: 1px solid #f1f1f1;
}

.cart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,123,0,0.15);
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    background: #f8f8f8;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.item-details p {
    margin: 0 0 15px;
    color: #ff7b00;
    font-size: 18px;
    font-weight: 700;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f7f8fa;
    padding: 6px;
    border-radius: 50px;
}

.qty-box button {
    width: 36px;
    height: 36px;
    border: none;
    background: linear-gradient(135deg,#ff7b00,#ff9800);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}

.qty-box button:hover {
    transform: scale(1.1);
}

.qty-box input {
    width: 50px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.item-total {
    min-width: 140px;
    text-align: right;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.remove-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg,#ff4d4d,#ff1e1e);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.remove-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,0,0,0.25);
}

.product-btn:hover {
    transform: translateY(-2px);
} 

.whatsapp-fixed:hover .whatsapp-number {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-fixed:hover i {
    background: #1ebe5d;
}

.qty-group {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    height: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: #f8f9fa;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.qty-btn:hover {
    background: #ff7a00;
    color: #fff;
}

.qty-input {
    width: 50px;
    height: 42px;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    outline: none;
}

.product-card h4 {
    /*padding: 0.5rem 0.5rem 0.5rem;*/
    margin: 0;
    font-size: 1.0rem;
    display: flex;
    font-weight: 600;
    justify-content: center;
}

.product-card p {
    padding: 0 0.5rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

.price {
    padding: 0.5rem 0.5rem;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.0rem;
    /*margin-bottom: 1rem;*/
}

.product-card button {
    width: 100%;
    margin-top: 1rem;
}

/* CTA */
.cta {
    background: var(--gradient-accent);
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
        animation: patternMove 30s linear infinite;
    }

@keyframes patternMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(100px) translateY(100px);
    }
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #343a40 0%, #2c3034 100%);
    color: white;
    padding: 1rem 0 1rem;
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-accent);
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-2);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-3);
}

.footer-section ul {
    list-style: none;
text-align: center;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 0.75rem;
    }

    .footer-section ul a {
        color: #adb5bd;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 400;
    }

        .footer-section ul a:hover {
            color: var(--accent-2);
            transform: translateX(5px);
        }

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #495057;
    position: relative;
    z-index: 2;
}

    .footer-bottom p {
        color: #6c757d;
        font-size: 0.9rem;
    }

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .slide {
        flex: 0 0 50%;
        width: 50%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }

    .hero-copy p {
        font-size: 1.1rem;
    }

    .hero-actions {
        gap: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 1rem;
    }

    .search-bar {
        margin: 0;
        max-width: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

        .main-nav.open {
            display: block;
        }

    .nav-list {
        flex-direction: column;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-placeholder {
        padding: 2rem;
    }

        .hero-placeholder i {
            font-size: 3rem;
        }

    .slider-container {
        height: 500px;
    }

    .slide {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-placeholder {
        padding: 1.5rem;
    }

        .hero-placeholder i {
            font-size: 2.5rem;
        }

    .slider-nav {
        bottom: 0.75rem;
        gap: 1rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .hero-copy {
        padding: 3rem 1rem;
        min-height: 350px;
    }

        .hero-copy span {
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            margin-bottom: 0.75rem;
        }

        .hero-copy h1 {
            font-size: 2rem;
            margin-bottom: 1.25rem;
        }

        .hero-copy p {
            font-size: 1rem;
            margin-bottom: 2rem;
        }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

        .hero-actions a {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            justify-content: center;
            padding: 1rem 2rem;
            font-size: 0.95rem;
        }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card,
    .product-card {
        padding: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}



.container-content {
    display: flex;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: #fff;
    padding: 15px;
    border-right: 1px solid #ddd;
}

    .sidebar h3 {
        font-size: 14px;
        margin-top: 20px;
    }

    .sidebar label {
        display: block;
        margin: 8px 0;
        font-size: 13px;
    }

/* Main Section */
.product-section {
    flex: 1;
    padding: 15px;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}

.brand-logo {
    height: 40px;
}

.visit-btn {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

/* Sort */
.sort-bar {
    margin: 10px 0;
    font-size: 14px;
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

/* Card */
.product-card {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
}

    .product-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .product-card img {
        width: 100%;
        height: 150px;
        object-fit: contain;
    }

    .product-card h4 {
        font-size: 14px;
        margin: 10px 0;
    }

.price {
    color: green;
    font-weight: bold;
}

.product-card button {
    background: #ff9a40;
    color: #fff;
   margin-top: 0px!important;
     border: none;
    padding: 6px 10px;
    margin-top: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.cart-link {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -5px;
    background: red;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}


.login-container {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: #fff;
    padding: 30px;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
}

    .login-box h2 {
        margin-bottom: 5px;
    }

.subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .input-group {
    flex: 1;
    position: relative;
}
.mega-feature-card {
    position: relative;
    max-width: 1250px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 30px;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #fff7e6,
        #fff0db,
        #ffe8cc
    );

    box-shadow:
        0 15px 40px rgba(255, 140, 0, .15),
        inset 0 1px 0 rgba(255,255,255,.8);

    border: 1px solid rgba(255,140,0,.15);
}

/* Floating Objects */
.floating {
    position: absolute;
    border-radius: 50%;
    opacity: .25;
    animation: float 8s infinite ease-in-out;
}

.circle1 {
    width: 120px;
    height: 120px;
    background: #ff9800;
    top: -30px;
    left: -30px;
}

.circle2 {
    width: 180px;
    height: 180px;
    background: #ff5722;
    right: -60px;
    top: 20px;
    animation-delay: 2s;
}

.circle3 {
    width: 100px;
    height: 100px;
    background: #ffc107;
    bottom: -20px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.card-header h2 {
    margin-top: 0px;
    font-size: 34px;
    font-weight: 800;
    color: #ff6f00;
    margin-bottom: 10px;
}

.card-header p {
    color: #666;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}

.item {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(10px);

    border-radius: 18px;
    padding: 20px 15px;

    text-align: center;

    transition: .4s;
    cursor: pointer;

    border: 1px solid rgba(255,140,0,.1);
}

.item:hover {
    transform: translateY(-8px) scale(1.04);
    background: #fff;
    box-shadow: 0 12px 25px rgba(255,140,0,.18);
}

.item i {
    font-size: 32px;
    color: #ff7b00;
    margin-bottom: 12px;
    display: block;

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.item span {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

@media(max-width:768px) {
    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .mega-feature-card {
        padding: 25px;
    }

    .card-header h2 {
        font-size: 26px;
    }
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/* Input */
.input-group {
    position: relative;
    margin-bottom: 15px;
    width: 50%;
}

.input-group-textbox {
    width: 100%;
}

    .input-group i {
        position: absolute;
        top: 12px;
        left: 12px;
        color: #ff9a40;
    }

    .input-group input {
        width: 100%;
        padding: 10px 10px 10px 35px;
        border-radius: 6px;
        border: 1px solid #ddd;
        outline: none;
    }

        .input-group input:focus {
            border-color: #ff9a40;
        }

/* Options */
.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 15px;
}

    .options a {
        color: #ff9a40;
        text-decoration: none;
    }

/* Button */
.login-btn {
    width: 100%;
    background: #ff9a40;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

    .login-btn:hover {
        background: #e67e22;
    }

/* Register */
.register-text {
    font-size: 13px;
    margin-top: 15px;
}

    .register-text a {
        color: #ff9a40;
        text-decoration: none;
        font-weight: 600;
    }


.cart-container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* Item */
.cart-item {
    display: flex;
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    align-items: center;
}

    .cart-item img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

.item-details {
    flex: 1;
    margin-left: 15px;
}

.qty-box {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

    .qty-box button {
        width: 30px;
        height: 30px;
        border: none;
        background: #ddd;
        cursor: pointer;
    }

    .qty-box input {
        width: 40px;
        text-align: center;
        border: 1px solid #ccc;
    }

/* Total */
.item-total {
    text-align: right;
}

.remove-btn {
    display: block;
    margin-top: 10px;
    background: none;
    border: none;
    color: red;
    cursor: pointer;
}

/* Summary */
.cart-summary {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.checkout-btn {
    width: 100%;
    background: #ff9a40;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

    .checkout-btn:hover {
        background: #e67e22;
    }

.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: #f5f7fa;
    font-family: 'Inter', sans-serif;
}

.register-card {
    width: 550px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

    .register-card h2 {
        margin-bottom: 20px;
    margin-top: 0px;
            color: #333;
    }

.register-btn {
    width: 100%;
    padding: 6px;
    background: #ff9a40;
    border: none;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    .register-btn:hover {
        background: #e6892f;
    }

.login-link {
    margin-top: 15px;
    font-size: 14px;
}

    .login-link a {
        color: #ff9a40;
        text-decoration: none;
    }

    .cat-img {
    display: block;
    margin: 10px auto 0 auto;
    height: 70px;   /* adjust size */
    width: 70px;    /* optional */
    object-fit: contain;
    transition: all 0.3s ease;
}

    .category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card a:hover {
    text-decoration: none;
    color: inherit;
}

.category-card a:visited {
    color: inherit;
}

.footer-map {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: none;
}

.app-download {
    margin-top: 20px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    margin: 5px;
    background: #fff;
    color: #ff6b00;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.store-btn:hover {
    background: #ff6b00;
    color: #fff;
    transform: translateY(-3px);
}