/*==================================================
        TOM STORE CSS
        PART 1
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/*=========================
        ROOT
=========================*/

:root{

    --primary:#d90429;
    --primary-dark:#b10322;

    --white:#ffffff;
    --black:#1d1d1d;

    --text:#555;
    --border:#ececec;

    --shadow:0 20px 45px rgba(0,0,0,.08);

}

/*=========================
        RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:var(--black);

    overflow-x:hidden;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=========================
      PAGE WRAPPER
=========================*/

.page-wrapper{

    width:100%;

    min-height:100vh;

    padding:25px 8%;

    overflow:hidden;

    position:relative;

    background:
    linear-gradient(135deg,
    #6d0000 0%,
    #990000 40%,
    #c40000 70%,
    #e30613 100%);

}

/* Background Glow */

.page-wrapper::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-220px;

    right:-180px;

    filter:blur(60px);

}

.page-wrapper::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-120px;

    bottom:-120px;

    filter:blur(60px);

}

/*=========================
        NAVBAR
=========================*/
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    width:95%;
    margin:20px auto;
    padding:18px 40px;

    background:rgba(0,0,0,.85);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;

    position:sticky;
    top:20px;
    z-index:999;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

    position:sticky;
}

.logo{
    font-size:34px;
    font-weight:900;
    color:#fff;
    z-index:2;
}

.logo span{
    color:#d70d0d;
}

.nav-links{
    position:absolute;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    gap:40px;

    list-style:none;
    margin:0;
    padding:0;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#4e0d0d;
}

/* Cart Button */

.cart-btn{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 22px;

    background:#520a0a;
    color:#fff;
    text-decoration:none;

    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.cart-btn:hover{
    background:#7d1111;
    transform:translateY(-2px);
}

.cart-count{
    width:24px;
    height:24px;

    border-radius:50%;

    background:#fff;
    color:#520a0a;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:13px;
    font-weight:bold;
}

/*=========================
          HERO
=========================*/

.hero{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:85vh;

    gap:70px;

    position:relative;

    z-index:5;

}

/*=========================
      LEFT CONTENT
=========================*/

.content{

    flex:1;

    max-width:620px;

}

.badge{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    border-radius:40px;

    font-size:14px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

}

.content h1{

    font-size:74px;

    line-height:1.05;

    color:#fff;

    font-weight:900;

    margin-bottom:25px;

}

.content h1 span{

    color:#ffe8b6;

}

.hero-text{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    font-size:18px;

    margin-bottom:40px;

}

/*=========================
        BUTTONS
=========================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:55px;

}

.cta-btn{

    padding:16px 38px;

    border:none;

    background:#fff;

    color:#d90429;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.secondary-btn{

    padding:16px 38px;

    border:2px solid #fff;

    background:transparent;

    color:#fff;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.secondary-btn:hover{

    background:#fff;

    color:#d90429;

}

/*=========================
      INFO BOXES
=========================*/

.specs{

    display:flex;

    gap:45px;

    flex-wrap:wrap;

}

.spec-item{

    background:rgba(255,255,255,.12);

    padding:20px;

    border-radius:18px;

    backdrop-filter:blur(12px);

    min-width:150px;

}

.spec-item strong{

    display:block;

    font-size:34px;

    color:#fff;

}

.spec-item span{

    color:#ffe7e7;

    margin-top:5px;

    display:block;

}

/*=========================
        RIGHT
=========================*/

.gift-stage{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-tom{

    width:620px;

    max-width:100%;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.25));

    animation:float 4s ease-in-out infinite;

}

/*=========================
      FLOAT
=========================*/

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

/*==================================================
        TOM STORE CSS
        PART 2
        Brands + Collections + Why Choose
==================================================*/

/*=========================
      SECTION SPACING
=========================*/

.brands{
    margin-top:40px;
}

.features{
    padding:100px 8%;
    background:#4e0d0d;
}

.process{
    padding:100px 8%;
    background:#4e0d0d;
}

/*=========================
      SECTION TITLE
=========================*/

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:48px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:15px;
}

.section-header p{
    max-width:650px;
    margin:auto;
    color:#ffffff;
    line-height:1.8;
    font-size:17px;
}

/*=========================
    SCROLLING CATEGORIES
=========================*/

.brands{

    width:100%;

    background:#d90429;

    overflow:hidden;

    padding:22px 0;

    white-space:nowrap;

}

.brand-track{

    display:flex;

    gap:70px;

    width:max-content;

    animation:scroll 22s linear infinite;

}

.brand-track span{

    color:#fff;

    font-size:18px;

    font-weight:700;

    letter-spacing:.5px;

}

.brand-track:hover{

    animation-play-state:paused;

}

@keyframes scroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*=========================
      COLLECTION GRID
=========================*/

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

/*=========================
      COLLECTION CARD
=========================*/

.feature-card{

    display:block;

    background:#fff;

    border-radius:25px;

    padding:45px;

    text-decoration:none;

    color:#222;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    text-align:center;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.feature-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#ffe5e5;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:45px;

}

.feature-card h3{

    font-size:28px;

    margin-bottom:15px;

    color:#111;

}

.feature-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.feature-btn{

    display:inline-block;

    background:#d90429;

    color:#fff;

    padding:14px 30px;

    border-radius:35px;

    font-weight:600;

}

/*=========================
      VIDEO SECTION
=========================*/

.video-section{

    padding:100px 8%;

    background:#460e0e;

}

.video-content{

    text-align:center;

    margin-bottom:50px;

}

.video-content h2{

    font-size:48px;

    color:#ffffff;

    margin-bottom:15px;

}

.video-content p{

    max-width:700px;

    margin:auto;

    color:#ffffff;

    line-height:1.8;

}

.video-box{

    width:100%;

    max-width:1100px;

    margin:auto;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.video-box video{

    width:100%;

    display:block;

    border-radius:25px;

}

/*=========================
      WHY CHOOSE
=========================*/

.steps{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.step{

    background:#fff;

    border-radius:25px;

    text-align:center;

    padding:45px 30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.step:hover{

    transform:translateY(-10px);

}

.step-number{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#ffe5ea;

    font-size:42px;

}

.step h3{

    font-size:24px;

    color:#222;

    margin-bottom:15px;

}

.step p{

    color:#666;

    line-height:1.8;

}

/*=========================
      REVEAL ANIMATION
=========================*/

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.features-grid{

    grid-template-columns:1fr;

}

.steps{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.section-header h2{

    font-size:36px;

}

.brand-track{

    gap:40px;

}

.brand-track span{

    font-size:16px;

}

.feature-card{

    padding:22px;

}

.feature-image{

    height:220px;

}

.step{

    padding:35px 25px;

}

}

/*=========================
      Reviews Section
=========================*/

.reviews{

    background:#480d0d;
    padding:100px 8%;


}

.reviews-header{

    text-align:center;
    margin-bottom:70px;
}

.reviews-header h2{
    font-size:60px;
    color:#fff;
    font-family:"Cormorant Garamond",serif;
    margin-bottom:15px;
}

.reviews-header p{
    color:#c8c8c8;
    font-size:18px;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.review-card{
    background:#c90e0e;
    border:1px solid rgba(212,170,83,.2);
    border-radius:18px;
    padding:35px;
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:#d4aa53;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.stars{

    color:#d4aa53;

    font-size:22px;

    margin-bottom:20px;

}

.review-card p{

    color:#d8d8d8;

    line-height:1.8;

    font-size:17px;

    margin-bottom:35px;

}

.customer{

    display:flex;

    align-items:center;

    gap:15px;

}

.customer img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #d4aa53;

}

.customer h4{

    color:#fff;

    margin-bottom:4px;

    font-size:18px;

}

.customer span{

    color:#b0b0b0;

    font-size:14px;

}

/*==================================================
        TOM STORE CSS
        PART 3
        Footer + Responsive + Extras
==================================================*/

/*=========================
        FOOTER
=========================*/

.footer{

    background:#000000;
    color:#fff;
    padding:80px 8% 30px;
    margin-top:80px; 

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:50px;

    margin-bottom:60px;

}

.footer-brand h2{

    font-size:34px;

    font-weight:800;

    margin-bottom:18px;

}

.footer-brand span{

    color:#d90429;

}

.footer-brand p{

    color:#bbb;

    line-height:1.8;

}

.footer-links h4,
.footer-social h4{

    margin-bottom:20px;

    font-size:22px;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#bbb;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-social p{

    color:#bbb;

    line-height:1.8;

    margin-top:10px;

}

/*=========================
        SOCIAL ICONS
=========================*/

.social-icons{

    display:flex;

    gap:15px;

    margin-bottom:20px;

}

.social-icons a{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#222;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    transition:.35s;

}

.social-icons a:hover{

    background:#d90429;

    transform:translateY(-6px);

}

/*=========================
      COPYRIGHT
=========================*/

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

}

.footer-bottom p{

    color:#999;

    font-size:15px;

}

/*=========================
     FLOATING WHATSAPP
=========================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

    box-shadow:0 15px 30px rgba(0,0,0,.2);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/*=========================
      SMOOTH HOVER
=========================*/

button,
a,
.feature-card,
.step,
.social-icons a{

    transition:.35s ease;

}

/*=========================
      SCROLLBAR
=========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:#d90429;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b10322;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:1200px){

.hero{

    gap:40px;

}

.content h1{

    font-size:58px;

}

.hero-tom{

    width:500px;

}

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.navbar{

    flex-direction:column;

    gap:20px;

}

.hero{

    flex-direction:column;

    text-align:center;

    padding:50px 0;

}

.hero-buttons{

    justify-content:center;

}

.specs{

    justify-content:center;

}

.hero-tom{

    width:420px;

}

.footer-grid{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.nav-links{

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.content h1{

    font-size:46px;

}

.hero-text{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-btn,
.secondary-btn{

    width:250px;

}

.specs{

    flex-direction:column;

    align-items:center;

}

.hero-tom{

    width:320px;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-brand p{

    margin:auto;

}

.social-icons{

    justify-content:center;

}

}

@media(max-width:480px){

.page-wrapper{

    padding:20px;

}

.content h1{

    font-size:36px;

}

.section-header h2{

    font-size:30px;

}

.hero-tom{

    width:260px;

}

}

/*=========================
        FADE ANIMATION
=========================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}


/* ==========================================
        MOBILE RESPONSIVE (768px)
========================================== */

@media screen and (max-width:768px){

    .page-wrapper{
        padding:15px;
    }

    /* NAVBAR */

    .navbar{
        width:100%;
        margin:0;
        padding:15px;
        border-radius:15px;
        position:relative;
        top:0;
        gap:15px;
    }

    .logo{
        font-size:28px;
        text-align:center;
    }

    .nav-links{
        position:static;
        transform:none;
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
        width:100%;
    }

    .nav-links li{
        width:auto;
    }

    .nav-links a{
        font-size:15px;
    }

    .cart-btn{
        margin:0;
        width:100%;
        justify-content:center;
    }

    /* HERO */

    .hero{
        flex-direction:column-reverse;
        text-align:center;
        gap:30px;
        min-height:auto;
        padding:40px 0;
    }

    .content{
        max-width:100%;
    }

    .content h1{
        font-size:36px;
        line-height:1.2;
    }

    .hero-text{
        font-size:15px;
        line-height:1.7;
    }

    .hero-buttons{
        justify-content:center;
    }

    .cta-btn{
        width:220px;
    }

    .hero-tom{
        width:260px;
        margin:auto;
    }

    /* INFO BOXES */

    .specs{
        display:grid;
        grid-template-columns:1fr;
        gap:15px;
    }

    .spec-item{
        width:100%;
        text-align:center;
    }

    /* COLLECTIONS */

    .features{
        padding:60px 20px;
    }

    .features-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .feature-card{
        padding:30px 20px;
    }

    .feature-icon{
        width:70px;
        height:70px;
        font-size:35px;
    }

    .feature-card h3{
        font-size:22px;
    }

    /* VIDEO */

    .video-section{
        padding:60px 20px;
    }

    .video-content h2{
        font-size:32px;
    }

    .video-box{
        border-radius:18px;
    }

    /* WHY CHOOSE */

    .process{
        padding:60px 20px;
    }

    .steps{
        grid-template-columns:1fr;
    }

    .step{
        padding:30px 20px;
    }

    /* REVIEWS */

    .reviews{
        padding:60px 20px;
    }

    .reviews-header h2{
        font-size:34px;
    }

    .reviews-grid{
        grid-template-columns:1fr;
    }

    .review-card{
        padding:25px;
    }

    /* FOOTER */

    .footer{
        padding:60px 20px 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .social-icons{
        justify-content:center;
    }

    /* SCROLLING TEXT */

    .brand-track{
        gap:25px;
    }

    .brand-track span{
        font-size:14px;
    }

}

/* ==========================================
        EXTRA SMALL DEVICES
========================================== */

@media screen and (max-width:480px){

    .logo{
        font-size:24px;
    }

    .content h1{
        font-size:30px;
    }

    .hero-text{
        font-size:14px;
    }

    .hero-tom{
        width:220px;
    }

    .cta-btn{
        width:200px;
        padding:14px 25px;
    }

    .section-header h2,
    .video-content h2,
    .reviews-header h2{
        font-size:28px;
    }

    .feature-card,
    .step,
    .review-card{
        padding:20px;
    }
}