:root {
    --primary: #FFD600;
    /* Vibrant Yellow from image */
    --primary-dark: #E6C200;
    --secondary: #1A1A1A;
    /* Dark Text/Black */
    --accent: #FF3B30;
    /* Red for "Hot" or Buttons if needed */
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --text-main: #1C1C1E;
    --text-muted: #8E8E93;
    --radius-xl: 30px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.12);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--secondary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    background-color: var(--accent);
    /* Red buy buttons like in image usually */
    color: white;
}

.btn-sm:hover {
    background-color: #D32F2F;
}

.btn-outline {
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

.full-width {
    width: 100%;
}

/* Header & Hero Wrapper */
.header-hero-wrapper {
    background-color: var(--primary);
    position: relative;
    padding-bottom: 80px;
    /* Space for curve */
    overflow: hidden;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgb(230, 192, 3);
    /* top: 0; */
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: 98px;
    transition: transform 0.3s;
    border-radius: 5px;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary);
    text-transform: uppercase;
}

.nav-links li a:hover {
    opacity: 0.7;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: all 0.4s ease;

}

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

.nav-phone {
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-icon {
    position: relative;
    padding: 8px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding-top: 40px;
    padding-bottom: 60px;
}

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

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.8;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero-title .highlight {
    font-weight: 800;
}

.hero-tags {
    margin-bottom: 30px;
}

.hero-tags span {
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 15px;
}

/* Slider / Hero Image */
.hero-slider-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-slider {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image-wrapper {
    width: 400px;
    height: 400px;
    position: relative;
}

.slide-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    /* Mimic the burger 3D look with gradient */
    background: radial-gradient(circle at 30% 30%, #444, #000);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .slide-img-placeholder::after {
    content: 'VAPE 12K';
    color: white;
    font-weight: 800;
    font-size: 2rem;
} */

/* Curve Divider */
.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-curve svg {
    display: block;
    width: 100%;
    height: 100px;
    /* Adjust height of curve */
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: 680px;
    left: 10%;
    width: 100px;
    height: 100px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    transform: rotate(-15deg);
    border: 4px solid var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.badge-inner {
    text-align: center;
    line-height: 1;
}

.badge-text {
    display: block;
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
}

.badge-sub {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Main Sections */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Categories */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.categories-grid a {
    background-color: #dddddd;
}


.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    min-width: 100px;
}

.cat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cat-icon {
    font-size: 2rem;
}

.cat-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Product Sections */
.product-section.grey-bg {
    background-color: #F0F2F5;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.section-header .section-title {
    margin-bottom: 0;
    text-align: left;
    font-size: 1.8rem;
}

.view-all-link {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 20px;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 430px;
}

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

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.product-tag.hot {
    background: #FF9500;
}

.product-img-box {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    /* height: 180px; */
    align-items: center;
}

.img-placeholder {
    width: 263px;
    height: auto;
    background: #eee;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    /* top: 30px; */
}

/* .img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ddd 25%, #f5f5f5 50%, #ddd 75%);
    background-size: 400% 400%;
} */

/* .p-merry {
    background: #FFD1DC;
}

.p-jnr {
    background: #D1E8FF;
}

.p-fumot {
    background: #D4FFD1;
}

.p-adalya {
    background: #FFE4BC;
}

.p-alfakher {
    background: #E2D1FF;
} */

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--secondary);
}

/* List View for Others */
.products-list-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.list-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
}



.item-details {
    flex: 1;
}

.item-details h3 {
    font-size: 1rem;
}

.item-details p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Reviews */
.reviews-section {
    background: #fff;
}

.reviews-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.review-card {
    min-width: 300px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin: 0 10px;
    scroll-snap-align: center;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stars {
    color: #FFD600;
}

.review-text {
    font-style: italic;
    font-size: 0.9rem;
}

/* Delivery */
.delivery-section {
    margin-top: 40px;
}

.delivery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.info-list li {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-list .icon {
    font-size: 2rem;
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-frame {
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Additional mobile fixes for 320px+ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    .section {
        padding: 40px 0;
    }

    .product-card {
        height: auto;
    }

    .img-placeholder {
        width: 100%;
        max-width: 263px;
        margin: 0 auto;
    }

    .categories-grid {
        gap: 15px;
    }

    .cat-item {
        min-width: 80px;
        padding: 12px 18px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Footer */


/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        padding: 40px;
    }

    .nav-logo img {
        width: 80px;
        height: 50px;
        /* Smaller on mobile */
    }

    .nav-container {
        padding: 0 10px;
        /* Ensure padding on small screens */
    }

    .header-contact .nav-phone {
        display: none;
        /* Hide phone text on mobile to save space */
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-slider-container {
        margin-bottom: 30px;
        width: 100%;
    }

    .slide-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .floating-badge {
        top: 150px;
        /* Adjust pos */
        left: 10px;
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }

    .badge-text {
        font-size: 0.9rem;
    }

    .delivery-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
    }

    .delivery-section {
        margin-top: 20px;
    }

    .map-frame iframe {
        width: 100%;
        height: 250px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .products-list-view {
        gap: 15px;
    }

    .list-item {
        padding: 15px;
    }

    .reviews-wrapper {
        flex-direction: column;
        overflow: visible;
    }

    .review-card {
        width: 100%;
        margin: 0 0 20px;
    }
}

/* Slider Specifics */
.hero-slider .slide {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    /* Center content */
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass unless active */
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: all;
    z-index: 2;
}

.slider-dots {
    position: absolute;
    bottom: -40px;
    /* Below the image */
    display: flex;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Scroll Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin-top: 20px;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delivery Text Content */
.delivery-text-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.delivery-text-content h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary);
}

.delivery-text-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 1rem;
}

.delivery-text-content p strong {
    color: var(--secondary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .delivery-text-content {
        padding: 25px;
    }
}