/* Premium Design System for Vedaon */
:root {
    --primary-bg: #03140f;       /* Deep rich obsidian forest night */
    --secondary-bg: #073a2c;     /* Deep brand forest green from app logo */
    --card-bg: rgba(7, 58, 44, 0.4); /* Frosted brand green glass chamber */
    --accent-gold: #DFBA4F;      /* Luxurious warm gold from app logo */
    --accent-green: #10B981;     /* Vibrant leaf emerald green */
    --text-primary: #E5ECE9;     /* Cream white for readability */
    --text-secondary: #A0B2AC;   /* Sage green for muted elements */
    --glass-bg: rgba(7, 58, 44, 0.25);
    --glass-border: rgba(223, 186, 79, 0.15);
    --gold-gradient: linear-gradient(135deg, #DFBA4F 0%, #BFA03F 100%);
    --green-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --dark-gradient: linear-gradient(180deg, #03140f 0%, #073a2c 100%);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
}

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

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

h1, h2, h3, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-bg);
    border-radius: 4px;
    border: 2px solid var(--primary-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-title span {
    color: var(--accent-gold);
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 10, 7, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 5%;
    background: rgba(2, 10, 7, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 1.5px;
    background: linear-gradient(120deg, #ffffff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

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

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Premium Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #020a07;
    border: none;
    box-shadow: 0 4px 15px rgba(223, 186, 79, 0.25);
}

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

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(223, 186, 79, 0.1);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--text-primary);
    padding: 10px 16px;
}

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

/* Mobile Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    min-height: 85vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background-image: linear-gradient(rgba(3, 20, 15, 0.75), rgba(3, 20, 15, 0.95)), url('assets/hero_banner.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#canvas-container {
    display: none;
}

.hero-content {
    z-index: 2;
    max-width: 850px;
    padding: 0 24px;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Products Section — Full Width */
#products {
    padding-left: 0;
    padding-right: 0;
}

#products > .container {
    max-width: 100%;
    padding: 0 5%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

/* ====== Premium Glassmorphic Product Card ====== */
.product-card {
    background: linear-gradient(145deg, rgba(7, 58, 44, 0.25) 0%, rgba(3, 20, 15, 0.5) 100%);
    border: 1px solid rgba(223, 186, 79, 0.12);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Diagonal glossy sweep on hover */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.04) 40%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.04) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-18deg);
    transition: 0.85s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 3;
    pointer-events: none;
}

.product-card:hover::before {
    left: 130%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: rgba(223, 186, 79, 0.45);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(223, 186, 79, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Product Image */
.product-image {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #03140f 0%, #072a20 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle bottom gradient fade into info area */
.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(3, 20, 15, 0.6) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0.88;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    opacity: 1;
}

/* Badge */
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-gradient);
    color: var(--primary-bg);
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(223, 186, 79, 0.3);
}

/* Product Info */
.product-info {
    padding: 28px 28px 24px;
    text-align: left;
    position: relative;
}

/* Thin gold line separator at top of info */
.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(223, 186, 79, 0.25) 50%, transparent 100%);
}

.product-category {
    font-size: 0.72rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.85;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.product-price {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-price::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 6px var(--accent-green);
}

/* Network Section */
.dark-section {
    background: linear-gradient(180deg, var(--primary-bg) 0%, #010604 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-box {
    text-align: left;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(7, 58, 44, 0.2);
    border: 1px solid rgba(223, 186, 79, 0.05);
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(7, 58, 44, 0.4);
    border-color: rgba(223, 186, 79, 0.25);
    transform: translateY(-8px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(223, 186, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(223, 186, 79, 0.2);
    transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--gold-gradient);
}

.feature-box:hover .feature-icon-wrapper i {
    color: var(--primary-bg);
}

.feature-icon-wrapper i {
    font-size: 1.6rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.feature-box h3 {
    margin-bottom: 16px;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Policies & Guidelines Section */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.policy-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 30px;
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.policy-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.policy-card-header i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.policy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.policy-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.policy-card:hover .policy-link {
    color: var(--accent-green);
}

.policy-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.policy-link:hover i {
    transform: translateX(4px);
}

/* Policy Content Layout (For sub-pages) */
.policy-page {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--primary-bg) 0%, #010503 100%);
    min-height: 100vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(7, 58, 44, 0.25);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.policy-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 30px;
}

.policy-header h1 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.policy-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.policy-body h2 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.policy-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.policy-body li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.policy-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--accent-green);
    transform: translateX(-4px);
}

/* Footer */
footer {
    background-color: #010503;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-primary);
}

.footer-social a:hover {
    background: var(--gold-gradient);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links-col ul li {
    margin-bottom: 14px;
}

.footer-links-col ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.4rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 6%;
    }
    .burger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: var(--primary-bg);
        border-left: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 1000;
        gap: 40px;
    }
    
    .nav-links.active {
        transform: translateX(0%);
    }

    .auth-buttons {
        flex-direction: column;
        width: 80%;
        gap: 15px;
    }

    .auth-buttons .btn {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .hero-btns .btn {
        width: 80%;
        max-width: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .policy-container {
        padding: 30px 20px;
    }
    .policy-header h1 {
        font-size: 2.2rem;
    }
}

/* Burger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Download App Button styling */
.btn-download {
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    background: transparent !important;
    border: 1.5px solid var(--accent-gold) !important;
    color: var(--accent-gold) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-download:hover {
    background: rgba(223, 186, 79, 0.1) !important;
    transform: translateY(-2px);
}

/* Highlights Bar Under Banner */
.highlights-bar {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--glass-border);
    padding: 24px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.highlight-text h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Categories Highlight Section */
#categories {
    background: linear-gradient(180deg, #031c15 0%, #03140f 100%);
    border-bottom: 1px solid rgba(223, 186, 79, 0.1);
    border-top: 1px solid rgba(223, 186, 79, 0.1);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.category-rect-card {
    position: relative;
    height: 280px; /* Tall vertical layout card */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border: 1px solid rgba(223, 186, 79, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 20px;
}

/* Gradient overlay from dark green at bottom to transparent at top */
.category-rect-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 20, 15, 0.2) 0%, rgba(3, 20, 15, 0.85) 100%);
    transition: background 0.3s ease;
    z-index: 1;
}

.category-rect-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0;
}

.category-rect-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(223, 186, 79, 0.25);
}

.category-rect-card:hover::after {
    background: linear-gradient(180deg, rgba(3, 20, 15, 0.1) 0%, rgba(3, 20, 15, 0.75) 100%);
}

.category-rect-card:hover h3 {
    color: var(--accent-gold);
    transform: scale(1.05);
}

/* Groceries Category Highlight (Centered badge) */
.category-rect-card.highlight-grocery {
    border: 1.5px solid var(--accent-gold);
    box-shadow: 0 8px 30px rgba(223, 186, 79, 0.15);
}

.category-rect-card.highlight-grocery::before {
    content: 'IN PORTAL APP';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--primary-bg);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 3;
    white-space: nowrap;
}

/* Category Section Banners (Taller and responsive) */
.category-section-banner {
    width: 100%;
    height: 280px; /* Taller on desktop */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(223, 186, 79, 0.18);
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 50px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.category-section-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 20, 15, 0.95) 20%, rgba(3, 20, 15, 0.3) 100%);
    z-index: 1;
}

.category-section-banner h2 {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 700;
    z-index: 2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Horizontal scroll list for Tours category */
#tours-category .product-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 10px 10px 30px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(255,255,255,0.05);
}

#tours-category .product-grid::-webkit-scrollbar {
    height: 8px;
}

#tours-category .product-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

#tours-category .product-grid::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

#tours-category .product-grid .product-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
}

/* Full Image Cover Card for Tours */
.product-card.tour-card {
    position: relative;
    height: 420px; /* Tall card for full image layout */
    cursor: pointer;
}

.product-card.tour-card .product-image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product-card.tour-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card.tour-card:hover .product-image img {
    transform: scale(1.1);
}

/* Tours Info Absolute Overlay */
.product-card.tour-card .product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3, 20, 15, 0.98) 0%, rgba(3, 20, 15, 0.95) 50%, rgba(3, 20, 15, 0.3) 100%);
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(calc(100% - 85px)); /* Only show title and category at the bottom */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.product-card.tour-card:hover .product-info,
.product-card.tour-card.active-reveal .product-info {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(3, 20, 15, 0.98) 0%, rgba(3, 20, 15, 0.95) 70%, rgba(3, 20, 15, 0.7) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.product-card.tour-card .product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-card.tour-card .product-info p {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit tour packages description strictly to 3 lines */
    -webkit-box-orient: vertical;
    line-height: 1.55;
    color: var(--text-secondary);
}

.product-card.tour-card .product-info .product-price-row {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.product-card.tour-card:hover .product-info p,
.product-card.tour-card:hover .product-info .product-price-row,
.product-card.tour-card.active-reveal .product-info p,
.product-card.tour-card.active-reveal .product-info .product-price-row {
    opacity: 1;
    transform: translateY(0);
}

/* Restructured Category Blocks */
.category-block {
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.category-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.category-block-header i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    background: rgba(223, 186, 79, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(223, 186, 79, 0.2);
}

.category-block-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.category-block-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Placeholder Cards for Tours and Groceries */
.tour-image-placeholder, .grocery-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #02120e, #073a2c);
}

.tour-image-placeholder i, .grocery-image-placeholder i {
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.4;
    transition: var(--transition);
}

.product-card:hover .tour-image-placeholder i,
.product-card:hover .grocery-image-placeholder i {
    transform: scale(1.15);
    opacity: 0.8;
}

/* Secure Checkouts and Badges in Footer */
.footer-secure-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.secure-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.secure-badge-item i {
    font-size: 1.1rem;
    color: var(--accent-green);
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-icon-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.payment-icon-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--accent-gold);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect for Hero Background */
.hero-parallax {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
