:root{
    --color-primary: #dc0843;
    --color-primary-light: #f0537d;
    --color-primary-dark: #7d0330;
    --color-secondary: #f0c14b;
    --color-secondary-light: #f5d179;
    --color-secondary-dark: #c99a2e;
    --color-text-dark: #4a1f2c;
    --color-text-muted: #7a5566;
    --color-tint-light: #fceef1;
    --color-footer-bg: #1f0f18;
    --color-footer-text: #100f0f;
    --color-footer-text-muted: rgba(4, 4, 4, 0.8);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Global Effect */

#globalFireworksCanvas{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:9999;
}

html,body{
    scroll-behavior: smooth;
}

body{
    font-family:'Outfit',sans-serif;
    padding-top: 132px;
}

/* Top Bar */

.top-bar{
    background: var(--color-primary);
    color:white;
    padding:10px 0;
    font-weight:600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1060;
}

/* Navbar Section - Option F: cream/ivory, elegant minimal */

.custom-navbar{
    background: var(--color-tint-light);
    box-shadow: 0 2px 12px rgba(74, 31, 44, 0.08);
    padding:10px 0;
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1050;
}

.navbar-brand{
    padding: 0;
}

.navbar-brand img{
    width: 90px;
    height: auto;
    display: block;
}

.nav-menu{
    display:flex;
    align-items:center;
    list-style:none;
}

.nav-link{
    color: var(--color-text-dark) !important;
    font-size:20px;
    font-weight:600;
    margin:0 15px;
    text-decoration:none;
    position: relative;
    padding-bottom: 6px;
}

.nav-link:hover,
.nav-link.active{
    color: var(--color-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    transition:width .3s ease-in-out;
}

.price-btn{
    background: var(--color-primary);
    color:#fff;
    padding:12px 30px;
    border-radius:40px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
}

.price-btn:hover{
    background: var(--color-primary-dark);
    color:#fff;
}

.mobile-toggle{
    background:transparent;
    border:none;
    width:35px;
    height:30px;
    position:relative;
    cursor:pointer;
    z-index:1001;
}

.mobile-toggle span{
    display:block;
    position:absolute;
    height:3px;
    width:100%;
    background: var(--color-primary);
    border-radius:3px;
    left:0;
    transition:.25s ease-in-out;
}

.mobile-toggle span:nth-child(1){ top:0; }
.mobile-toggle span:nth-child(2){ top:13px; }
.mobile-toggle span:nth-child(3){ top:26px; }

.mobile-toggle.is-active span:nth-child(1){
    top:13px;
    transform:rotate(135deg);
}
.mobile-toggle.is-active span:nth-child(2){
    opacity:0;
}
.mobile-toggle.is-active span:nth-child(3){
    top:13px;
    transform:rotate(-135deg);
}

@media (max-width: 991px){

    .nav-menu{
        position:fixed;
        top:0;
        right:-100%;
        height:100vh;
        width:70%;
        max-width:300px;
        background: var(--color-primary);
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        padding:30px;
        transition:right .35s ease-in-out;
        z-index:1000;
    }

    .nav-menu.active{
        right:0;
    }

    .nav-menu .nav-item{
        margin:12px 0;
        width:100%;
    }

    .nav-menu .nav-link{
        color:#fff !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active{
        color: var(--color-secondary) !important;
    }

    .nav-menu .price-btn{
        margin-top:10px;
        background: var(--color-secondary);
    }

    .nav-menu .price-btn:hover{
        background: var(--color-secondary-dark);
    }
}

.img-fluid {
    max-width: 100%;
    height: auto
}


/* Hero Section */


#mainCarousel,
#mainCarousel .carousel-inner,
#mainCarousel .carousel-item {
  width: 100%;
  padding-top: 5px;
}

#mainCarousel .carousel-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  display: block;
  background-color: var(--color-primary-dark);
}

.section-eyebrow{
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color: var(--color-secondary-dark);
    margin-bottom:8px;
}

.section-title{
    font-family:'Righteous', sans-serif;
    font-weight:800;
    font-size:42px;
    line-height:1.2;
    color: var(--color-text-dark);
    margin-bottom:15px;
}

.section-title .text-accent{
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.section-divider{
    width:60px;
    height:4px;
    background: var(--color-secondary);
    border-radius:2px;
    margin:0 auto 24px auto;
}

.section-subtitle{
    color: var(--color-text-muted);
    font-size:16px;
    max-width:700px;
    margin:0 auto 50px auto;
    line-height:1.6;
    text-align:center;
}

@media (max-width:767px){
    .section-title{ font-size:28px; }
    .section-subtitle{ font-size:15px; margin-bottom:35px; }
}


.card-title{
    font-weight:800;
    font-size:20px;
    margin-bottom:6px;
}

.card-title-sm{
    font-size:16px;
}

.card-desc{
    font-size:14px;
    line-height:1.5;
    margin-bottom:0;
}


/* Welcome Section */


.welcome-section.pad {
  padding: 80px 0;
}

.welcome-feature-list li {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 992px) {
  .welcome-feature-list li {
    justify-content: flex-start;
  }
}

.welcome-feature-list li i {
  color: var(--color-primary);
  font-size: 20px;
}

.welcome-cartoon {
  border: 5px solid rgba(212, 160, 23, 0.4);
  box-shadow: 0 15px 35px rgba(212, 160, 23, 0.2) !important;
  animation: floatWelcome 5s ease-in-out infinite,
             morphBlob 8s ease-in-out infinite;
}

@keyframes floatWelcome {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes morphBlob {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  25% {
    border-radius: 40% 60% 65% 35% / 50% 60% 40% 50%;
  }
  50% {
    border-radius: 55% 45% 40% 60% / 40% 45% 55% 60%;
  }
  75% {
    border-radius: 45% 55% 60% 40% / 60% 40% 60% 40%;
  }
}

/* Status Section */

.fireworks-stats-section{
    position:relative;
    background: var(--color-primary-dark);
    padding:50px 0;
    overflow:hidden;
}

.fireworks-stats-section::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0; bottom:0;
    background:radial-gradient(circle at 50% 0%, rgba(138,5,48,0.35), transparent 60%);
    z-index:2;
    pointer-events:none;
}

.fireworks-stats-content{
    position:relative;
    z-index:3;
}

.fireworks-stats-section .section-title,
.fireworks-stats-section .section-eyebrow{
    color:#fff;
}

.fireworks-stats-section .section-subtitle{
    color:#f5dde5;
}

.stat-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:14px;
    padding:40px 25px;
    text-align:center;
    height:100%;
    transition:all .3s ease;
}


.stat-card:hover{
    transform:translateY(-8px);
    border-color: var(--color-secondary);
}

.stat-icon{
    font-size:42px;
    color: var(--color-secondary);
    margin-bottom:20px;
}

.stat-number{
    color:#fff;
    font-size:36px;
    font-weight:800;
    margin-bottom:8px;
}

.stat-card .card-title{
    color: var(--color-secondary);
    letter-spacing:.5px;
    text-transform:uppercase;
    font-size:17px;
    margin-bottom:12px;
}

.stat-card .card-desc{
    color:#e6cdd7;
}

@media (max-width:767px){
    .stat-card{
        padding:22px 15px;
        margin-bottom:15px;
    }

    .stat-icon{
        font-size:30px;
        margin-bottom:12px;
    }

    .stat-number{
        font-size:26px;
    }

    .stat-card .card-title{
        font-size:14px;
        margin-bottom:8px;
    }

    .stat-card .card-desc{
        font-size:13px;
    }
}

/* Categories Section */

.categories-section.pad{
    padding:80px 0;
}

.cat-sparkle{
    position:absolute;
    top:-10px;
    font-size:38px;
    opacity:0.9;
    animation:sparkleFloat 6s ease-in-out infinite;
}

.cat-sparkle-left{
    left:12%;
    transform:rotate(-10deg);
}

.cat-sparkle-right{
    right:12%;
    transform:rotate(10deg);
    animation-delay:1.5s;
}

@keyframes sparkleFloat{
    0%, 100%{ transform:translateY(0) rotate(-10deg); }
    50%{ transform:translateY(-10px) rotate(-10deg); }
}

.category-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:16px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.category-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.category-card:hover .category-img{
    transform:scale(1.05);
}

.category-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}

.category-overlay .card-title{
    color: var(--color-secondary-light);
    font-size:24px;
}

.category-overlay .card-title-sm{
    font-size:18px;
    margin-bottom:0;
}

.category-overlay .card-desc{
    color:#fff;
}

.category-card-large{
    height:100%;
    min-height:520px;
    border:3px solid rgba(212, 160, 23, 0.5);
}

.category-card-small{
    height:220px;
}

.category-card-wide{
    height:280px;
}

@media (max-width:991px){
    .category-card-large{
        min-height:380px;
    }
    .cat-sparkle{
        display:none;
    }
}

@media (max-width:575px){
    .category-card-small{
        height:160px;
    }
    .category-card-wide{
        height:220px;
    }
    .category-overlay .card-title{
        font-size:18px;
    }
    .category-overlay .card-title-sm{
        font-size:15px;
    }
    .category-overlay .card-desc{
        font-size:12px;
    }
}

/* Products Section */

.categories-grid-section.pad{
    background: url("../images/product_bg.png") no-repeat center center;
    background-size: cover;
    padding:80px 0;
}

.categories-grid-section .section-subtitle{
    color: var(--color-primary-dark);
}

.cat-grid-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:14px;
    overflow:hidden;
    height:100%;
    transition:all .3s ease;
}

.cat-grid-card:hover{
    transform:translateY(-6px);
    border-color: var(--color-secondary);
}

.cat-grid-img-wrap{
    width:100%;
    height:300px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
}

.cat-grid-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.cat-grid-body{
    padding:16px;
    text-align:center;
    background-color: var(--color-tint-light);
}

.cat-grid-body .card-title{
    color: var(--color-primary-dark);
    font-size:16px;
    margin-bottom:14px;
}

.view-details-btn{
    display:block;
    width:100%;
    text-align:center;
    background: var(--color-secondary);
    color: var(--color-text-dark);
    font-weight:700;
    font-size:14px;
    padding:10px 0;
    border-radius:25px;
    text-decoration:none;
    transition:background .3s ease;
}

.view-details-btn:hover{
    background: var(--color-secondary-dark);
    color: var(--color-text-dark);
}

@media (max-width:767px){
    .cat-grid-img-wrap{
        height:110px;
    }
    .cat-grid-body .card-title{
        font-size:14px;
        margin-bottom:10px;
    }
    .view-details-btn{
        font-size:13px;
        padding:8px 0;
    }
}

/* Combo Packs Section */

.festive-collections-section.pad{
    background:transparent;
    padding:90px 0;
}

.collection-card{
    background:rgba(255,255,255,0.04);
    border:2px solid rgba(10, 10, 10, 0.1);
    border-radius:16px;
    overflow:hidden;
    padding:20px;
    height:100%;
    transition:all .3s ease;
}

.collection-card:hover{
    transform:translateY(-6px);
    border:2px solid var(--color-secondary);
    background: rgba(212, 160, 23, 0.08);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.25);
}

.collection-img-wrap{
    position:relative;
    width:100%;
    height:200px;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:20px;
}

.collection-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.collection-badge{
    position:absolute;
    top:12px;
    right:12px;
    font-size:11px;
    font-weight:700;
    padding:5px 14px;
    border-radius:20px;
    text-transform:uppercase;
    color:#fff;
}

.badge-kids{
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
}

.badge-bestseller{
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-dark));
}

.badge-professional{
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.collection-body .card-title{
    color:#fff;
    font-size:22px;
    margin-bottom:16px;
}

.collection-features{
    margin-bottom:24px;
}

.collection-features li{
    color:#040405;
    font-size:14px;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:8px;
}

.collection-features li i{
    color: var(--color-secondary-dark);
    font-size:14px;
}

.view-collection-btn{
    display:block;
    width:100%;
    text-align:center;
    background:transparent;
    border:1px solid var(--color-secondary);
    color: var(--color-secondary-dark);
    font-weight:700;
    font-size:15px;
    padding:12px 0;
    border-radius:30px;
    text-decoration:none;
    transition:all .3s ease;
}

.view-collection-btn:hover{
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-dark));
    border-color:transparent;
    color:#fff;
}

@media (max-width:991px){
    .collection-card-featured{
        transform:none;
    }
}

@media (max-width:575px){
    .collection-img-wrap{
        height:160px;
    }
    .collection-body .card-title{
        font-size:18px;
    }
}

/* Footer Section */

.site-footer{
   background-image: url("../images/footerimg.png");
    background-size: cover;
    background-position: center;
    position:relative;
    overflow:hidden;
}

.footer-wave{
    line-height:0;
}

.footer-wave svg{
    width:100%;
    height:36px;
    display:block;
}

.footer-main{
    padding:60px 0 40px;
}

.footer-brand{
    font-family:'Righteous', sans-serif;
    font-size:26px;
    margin-bottom:16px;
    color:#0c0c0c;
}

.footer-desc{
    color: var(--color-footer-text-muted);
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
    max-width:320px;
}

.footer-socials{
    display:flex;
    gap:12px;
}

.footer-social-icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#080202;
    font-size:16px;
    text-decoration:none;
    transition:background .3s ease, color .3s ease;
}

.footer-social-icon:hover{
    background: var(--color-secondary);
    color: white;
}

.footer-heading{
    color: var(--color-secondary);
    font-weight:800;
    font-size:16px;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:22px;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color: var(--color-footer-text);
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:color .3s ease;
}

.footer-links a:hover{
    color: var(--color-secondary);
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:20px;
    text-align:left;
}

.footer-contact-icon{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:8px;
    background:rgba(255,255,255,0.06);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--color-secondary);
    font-size:14px;
}

.footer-contact-text{
    color: var(--color-footer-text);
    font-size:14px;
    line-height:1.5;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:18px 0;
    text-align:center;
}

.footer-bottom p{
    color: var(--color-footer-text-muted);
    font-size:13px;
    margin:0;
}

@media (max-width:991px){
    .footer-contact-item{
        max-width:420px;
        margin-left:auto;
        margin-right:auto;
    }
}

@media (max-width:767px){
    .footer-main{
        padding:40px 0 30px;
    }
    .footer-brand{
        font-size:22px;
    }
    .footer-desc{
        max-width:none;
    }
    .footer-contact-item{
        gap:10px;
        margin-bottom:16px;
        max-width:320px;
    }
    .footer-contact-icon{
        width:30px;
        height:30px;
        min-width:30px;
        font-size:13px;
    }
    .footer-contact-text{
        font-size:13px;
        line-height:1.4;
    }
}

/* Reveal CSS */

.reveal{
    opacity: 0;
}

.reveal.revealed{
    animation-duration: 2.4s;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    animation-fill-mode: forwards;
}

.reveal-up.revealed{ animation-name: revealUp; }
.reveal-left.revealed{ animation-name: revealLeft; }
.reveal-right.revealed{ animation-name: revealRight; }
.reveal-zoom.revealed{ animation-name: revealZoom; }
.reveal-fade.revealed{ animation-name: revealFade; }

@keyframes revealUp{
    from{ opacity: 0; transform: translateY(50px); }
    to{ opacity: 1; transform: translateY(0); }
}

@keyframes revealLeft{
    from{ opacity: 0; transform: translateX(-60px); }
    to{ opacity: 1; transform: translateX(0); }
}

@keyframes revealRight{
    from{ opacity: 0; transform: translateX(60px); }
    to{ opacity: 1; transform: translateX(0); }
}

@keyframes revealZoom{
    from{ opacity: 0; transform: scale(0.85); }
    to{ opacity: 1; transform: scale(1); }
}

@keyframes revealFade{
    from{ opacity: 0; }
    to{ opacity: 1; }
}

/* Quick Access Icons */

.fixed-contact-wrapper {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
 
.fixed-contact-icon {
    display: block;
    width: 58px;
    height: 58px;
    overflow: hidden;
    transition: transform 0.25s ease;
}
 
.fixed-contact-icon:hover {
    transform: scale(1.08);
}
 
.fixed-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
 
.fixed-quick-purchase {
    position: fixed;
    bottom: 85px;
    right: 20px;
    z-index: 998;
    width: 90px;
    transition: transform 0.25s ease;
    animation: quickPurchaseBlink 1.6s ease-in-out infinite;
}
 
.fixed-quick-purchase:hover {
    transform: scale(1.08);
    animation-play-state: paused;
}
 
@keyframes quickPurchaseBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(1.06);
    }
}
 
.fixed-quick-purchase img {
    width: 100%;
    height: auto;
    display: block;
}
 
@media (max-width: 576px) {
    .fixed-contact-wrapper {
        bottom: 20px;
        left: 12px;
        gap: 10px;
    }
 
    .fixed-contact-icon {
        width: 48px;
        height: 48px;
    }
 
    .fixed-quick-purchase {
        bottom: 70px;
        right: 12px;
        width: 70px;
    }
}
 

/* Scroll To Top Icon */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
}

.scroll-top-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-top-track {
    fill: rgba(220, 8, 67, 0.08);
    stroke: rgba(220, 8, 67, 0.2);
    stroke-width: 3;
}

.scroll-top-progress {
    fill: none;
    stroke: #dc0843;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.scroll-top-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #dc0843;
    font-size: 20px;
    line-height: 1;
    pointer-events: none;
}

.scroll-top-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #dc0843;
}

@media (max-width: 576px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .scroll-top-arrow svg {
        width: 16px;
        height: 16px;
    }
}