@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #f04f19;
    --primary-dark: #d44415;
    --secondary: #2b2b2b;
    --dark: #1a1a1a;
    --light: #ffffff;
    --text: #424a4d;
    --text-light: #ffffff;
    --muted: #767676;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.display-2 { font-size: 3rem; font-weight: 700; }
.display-4 { font-size: 1.5rem; font-weight: 400; }
.display-5 { font-size: 1.25rem; font-weight: 400; }
.display-7 { font-size: 1rem; font-weight: 400; }

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.fire-sweep {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(135deg, 
        rgba(240, 79, 25, 0.9) 0%, 
        rgba(255, 140, 50, 0.7) 50%, 
        rgba(255, 200, 100, 0.5) 100%);
}

.fire-sweep-left { left: -50%; }
.fire-sweep-right { right: -50%; }

/* Sidebar - Fixed left sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 75px;
    height: 100vh;
    background: var(--light);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: width 0.3s ease;
    overflow: hidden;
}

.sidebar:hover {
    width: 200px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.sidebar-logo .flame-canvas {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.sidebar-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.sidebar:hover .sidebar-logo img {
    transform: scale(1.1);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: var(--text);
    font-size: 1.3rem;
    transition: all 0.3s;
    position: relative;
    width: 75px;
}

.sidebar:hover .sidebar-link {
    justify-content: flex-start;
    padding-left: 25px;
    width: 200px;
}

.sidebar-link i {
    width: 24px;
    text-align: center;
}

.sidebar-link span {
    display: none;
    margin-left: 15px;
    font-size: 1rem;
    white-space: nowrap;
}

.sidebar:hover .sidebar-link span {
    display: block;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--primary);
    background: rgba(240, 79, 25, 0.1);
}

.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
}

/* Floating Cart Button - More Visible */
.floating-cart {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 25px rgba(240, 79, 25, 0.5), 0 0 0 4px rgba(240, 79, 25, 0.2);
    z-index: 9997;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: cartPulse 2s ease-in-out infinite;
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(240, 79, 25, 0.7), 0 0 0 6px rgba(240, 79, 25, 0.3);
}

@keyframes cartPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(240, 79, 25, 0.5), 0 0 0 4px rgba(240, 79, 25, 0.2); }
    50% { box-shadow: 0 6px 30px rgba(240, 79, 25, 0.7), 0 0 0 6px rgba(240, 79, 25, 0.3); }
}

.floating-cart .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #25D366;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.floating-cart .cart-badge.empty {
    display: none;
}

.sidebar-icons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    padding: 12px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.sidebar:hover .sidebar-icon {
    justify-content: flex-start;
    padding-left: 25px;
    width: 200px;
}

.sidebar-icon span {
    display: none;
    margin-left: 15px;
    font-size: 0.9rem;
    white-space: nowrap;
    color: var(--text);
}

.sidebar:hover .sidebar-icon span {
    display: block;
}

.sidebar-icon:hover {
    color: var(--primary-dark);
}

/* Page content with sidebar offset */
body {
    padding-left: 75px;
}

/* Navigation */
.navbar {
    display: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.flame-canvas {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

.logo img {
    height: 5rem;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #000 !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.icons-menu {
    display: flex;
    gap: 10px;
}

.icons-menu a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.icons-menu a:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Slider - Auto Fading Background */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h5 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--light);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-indicator.active,
.hero-indicator:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Hidden old carousel elements */
.carousel,
.carousel-inner,
.carousel-item,
.carousel-caption,
.carousel-control,
.carousel-indicators {
    display: none !important;
}

/* Gallery Moving */
.gallery-section {
    padding: 60px 0;
    overflow: hidden;
    background: var(--dark);
}

.gallery-section .section-title {
    text-align: center;
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.grid-container {
    overflow: hidden;
}

.moving-left {
    display: flex;
    gap: 0;
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.grid-item {
    flex-shrink: 0;
    width: 400px;
    padding: 5px;
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

/* Social Section */
.social-section {
    padding: 50px 0;
    background: var(--light);
}

.social-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.social-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-list a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-list a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Article Section */
.article-section {
    padding: 80px 0;
}

.content-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.content-wrap .content-wrapper {
    flex: 1;
}

.content-wrap .image-wrapper {
    flex: 1;
}

.content-wrap h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.content-wrap p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.content-wrap ul {
    margin-top: 20px;
}

.content-wrap ul li {
    color: var(--text);
    padding: 8px 0;
}

.content-wrap ul li::before {
    content: "•";
    color: var(--primary);
    margin-right: 10px;
}

.content-wrap .image-wrapper img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

/* Events Section */
.events-section {
    padding: 60px 0;
    background: var(--dark);
}

.events-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 30px;
}

.events-slider-box img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Gallery Grid */
.gallery-grid-section {
    padding: 0;
    position: relative;
}

.gallery-grid-section .mbr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1;
}

.items-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.item-wrapper {
    position: relative;
    overflow: hidden;
}

.item-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.item-wrapper:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-section {
    padding: 80px 0;
    background: var(--light);
    position: relative;
}

.testimonial-section::before,
.testimonial-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.testimonial-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.stars span {
    color: var(--primary);
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.testimonial-author .name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

.testimonial-author .location {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 40px;
}

.content-wrap {
    display: flex;
    gap: 40px;
}

.form-wrapper {
    flex: 1;
}

.form-wrapper p {
    color: var(--muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-secondary {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-dark);
}

.map-wrapper {
    flex: 1;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.google-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contacts-wrapper {
    padding: 20px;
}

.contacts-wrap ul {
    margin-bottom: 20px;
}

.contacts-wrap li {
    color: var(--text);
    padding: 5px 0;
    font-size: 0.95rem;
}

.social-wrap {
    display: flex;
    gap: 15px;
}

.social-wrap a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

.social-wrap a:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 30px 0;
    background: var(--dark);
    text-align: center;
}

.footer p {
    color: var(--light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

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

    .hamburger {
        display: block;
    }

    .content-wrap {
        flex-direction: column;
    }

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

@media (max-width: 767px) {
    .carousel-caption h5 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .grid-item {
        width: 300px;
    }

    .items-wrapper {
        grid-template-columns: 1fr;
    }

    .display-2 {
        font-size: 2rem;
    }
}

/* Page Hero */
.page-hero,
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('public/images/heroslide-1800x1013.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.page-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
    .sidebar {
        width: 60px;
    }
    
    .sidebar:hover {
        width: 180px;
    }
    
    .sidebar-link {
        width: 60px;
    }
    
    .sidebar:hover .sidebar-link {
        width: 180px;
        padding-left: 20px;
    }
    
    .sidebar-icon {
        width: 60px;
    }
    
    .sidebar:hover .sidebar-icon {
        width: 180px;
        padding-left: 20px;
    }
    
    body {
        padding-left: 60px;
    }
    
    .sidebar-logo img {
        height: 40px;
    }
    
    .hero-content h5 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Menu Page Styles */
.page-hero {
    padding: 150px 0 60px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('public/images/heroslide-1800x1013.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.menu-section {
    padding: 60px 0;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.menu-item {
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s;
    overflow: hidden;
    background: white;
}

.menu-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(240, 79, 25, 0.2);
}

.menu-item-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 5px;
}

.menu-item h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
}

.menu-item .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.menu-item p {
    color: var(--muted);
    font-size: 0.9rem;
}

.meal-include {
    font-size: 0.8rem;
    color: var(--primary);
    margin: 5px 0 15px;
}

/* Events Page Styles */
.events-list {
    padding: 60px 0;
}

.event-card {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.event-card:nth-child(even) {
    flex-direction: row-reverse;
}

.event-card img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.event-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.event-card p {
    color: var(--text);
    margin-bottom: 15px;
}

.event-card ul li {
    color: var(--muted);
    padding: 5px 0;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column !important;
    }

    .event-card img {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 150px 0 60px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('public/images/heroslide-1800x1013.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

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

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--light);
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    color: var(--muted);
    padding: 40px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-qty button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: 10px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
    background: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.cart-total span:last-child {
    color: var(--primary);
    font-size: 1.4rem;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: #128C7E;
}

/* Add to Cart Button */
.btn-add-cart {
    width: 100%;
    padding: 10px 15px;
    margin-top: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer Links */
.footer a {
    color: var(--light);
    text-decoration: underline;
}

.footer a:hover {
    color: var(--primary);
}

/* Mobile Cart */
@media (max-width: 480px) {
    .cart-modal {
        width: 100%;
        right: -100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* Size Selection Modal */
.size-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.size-modal.active {
    display: flex;
}

.size-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.size-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.size-modal-header h3 {
    color: var(--dark);
    font-size: 1.3rem;
}

.size-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text);
}

.size-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.size-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(240, 79, 25, 0.1);
}

.size-option input {
    display: none;
}

.size-label {
    font-weight: 600;
    color: var(--dark);
}

.size-price {
    color: var(--primary);
    font-weight: 700;
}

.size-selected-price {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.size-selected-price span {
    color: var(--primary);
    font-weight: 700;
}

.size-modal .btn-add-cart {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.size-modal .btn-add-cart:hover {
    background: var(--primary-dark);
}

/* Cinematic Fire Page Transition */
.fire-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    background: #0a0a0a;
    overflow: hidden;
}

.fire-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* Fire Canvas */
.fire-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Fire Overlay Layers */
.fire-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 50, 0, 0.8) 0%, 
        rgba(255, 120, 0, 0.6) 30%, 
        rgba(255, 180, 50, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    animation: fireGlow 0.4s ease-in-out infinite alternate;
}

@keyframes fireGlow {
    0% { opacity: 0.9; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.02); }
}

/* Ember Particles Container */
.embers-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ember {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6600;
    border-radius: 50%;
    box-shadow: 0 0 6px #ff4400, 0 0 12px #ff6600;
    animation: emberFloat 1.5s ease-out forwards;
}

.ember::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255,200,100,0.8) 0%, transparent 70%);
    top: -2px;
    left: -2px;
    border-radius: 50%;
}

@keyframes emberFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-100px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-200px) scale(0);
    }
}

/* Fire Brackets / Frames */
.fire-frame {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 100, 0, 0.9) 20%, 
        rgba(255, 150, 50, 0.8) 50%, 
        rgba(255, 100, 0, 0.9) 80%, 
        transparent 100%);
    height: 20px;
    width: 100%;
}

.fire-frame-top {
    top: 0;
    animation: frameSlideTop 0.5s ease-out forwards;
}

.fire-frame-bottom {
    bottom: 0;
    animation: frameSlideBottom 0.5s ease-out forwards;
}

@keyframes frameSlideTop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

@keyframes frameSlideBottom {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

/* Screen burn effect */
.screen-burn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(255, 100, 0, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 50, 0, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 150, 0, 0.3) 0%, transparent 40%);
    animation: burnPulse 0.3s ease-in-out infinite;
}

@keyframes burnPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Transition sequence */
.fire-transition.active .fire-overlay {
    animation: fireSweepIn 0.4s ease-out forwards;
}

.fire-transition.active .screen-burn {
    animation: burnFade 1s ease-in-out forwards;
}

@keyframes fireSweepIn {
    0% {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }
    50% {
        clip-path: polygon(0 50%, 100% 30%, 100% 70%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes burnFade {
    0% { opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
}

.video-gallery-section h2 {
    color: var(--light);
    margin-bottom: 10px;
}

.video-gallery-section p {
    color: var(--accent);
    margin-bottom: 40px;
}

.video-player {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.video-player video {
    width: 100%;
    display: block;
    background: #000;
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #1a1a1a;
}

.btn-play-all {
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-play-all:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.video-progress {
    color: var(--light);
    font-size: 0.9rem;
}

.video-thumbnail-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-thumbnail {
    width: 150px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s;
    background: #1a1a1a;
}

.video-thumbnail:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.video-thumbnail.active {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(240, 79, 25, 0.4);
}

.thumbnail-preview {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.thumbnail-preview i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.7;
}

.video-thumbnail span {
    display: block;
    padding: 10px;
    color: var(--light);
    font-size: 0.85rem;
    text-align: center;
}

@media (max-width: 768px) {
    .video-thumbnail {
        width: 120px;
    }
    
    .thumbnail-preview {
        height: 60px;
    }
    
    .thumbnail-preview i {
        font-size: 1.5rem;
    }
}