/* ================================================= */
/* HASHCO WOODEN - LUXURY ECOMMERCE THEME */
/* PART 4A */
/* ================================================= */


/* ============================= */
/* RESET */
/* ============================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#ffffff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    cursor:pointer;
    background:none;
}


/* ============================= */
/* VARIABLES */
/* ============================= */

:root{

    --gold:#d4af37;
    --gold-light:#f4d77a;
    --gold-dark:#9f7710;

    --bg:#050505;
    --bg-light:#0f0f0f;
    --bg-card:#111111;

    --white:#ffffff;
    --gray:#999999;
    --border:rgba(255,255,255,.08);

    --gradient:
    linear-gradient(
        135deg,
        #f4d77a,
        #d4af37,
        #9f7710
    );

    --shadow-gold:
    0 0 30px rgba(212,175,55,.25);

}


/* ============================= */
/* CONTAINER */
/* ============================= */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}


/* ============================= */
/* COMMON SECTION */
/* ============================= */

section{
    position:relative;
}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border:1px solid rgba(212,175,55,.3);

    border-radius:50px;

    color:var(--gold);

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:20px;
}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:end;

    gap:20px;

    margin-bottom:60px;
}

.section-header.center{

    text-align:center;

    justify-content:center;

    flex-direction:column;

    align-items:center;
}

.section-header h2{

    font-size:58px;

    line-height:1.1;

    font-family:
    'Cormorant Garamond',
    serif;

    font-weight:600;
}


/* ============================= */
/* BUTTONS */
/* ============================= */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--gradient);

    color:#000;

    font-weight:700;

    border-radius:60px;

    transition:.4s;
}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px
    rgba(212,175,55,.3);
}


.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    border:1px solid
    rgba(255,255,255,.15);

    transition:.4s;
}

.btn-outline:hover{

    border-color:var(--gold);

    color:var(--gold);
}


/* ============================= */
/* TOP BAR */
/* ============================= */

.top-bar{

    background:#000;

    border-bottom:
    1px solid rgba(255,255,255,.05);

    padding:12px 0;

    font-size:12px;

    letter-spacing:1px;
}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;
}


/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(20px);

    background:
    rgba(5,5,5,.85);

    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.nav-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:90px;
}


/* ============================= */
/* LOGO */
/* ============================= */

.logo{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo-box{

    width:55px;
    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--gradient);

    color:#000;

    font-weight:700;
}

.logo-text{

    display:flex;

    flex-direction:column;
}

.logo-text span{

    font-weight:700;

    letter-spacing:2px;
}

.logo-text small{

    color:var(--gray);

    letter-spacing:2px;
}


/* ============================= */
/* MENU */
/* ============================= */

.nav-menu{

    display:flex;

    gap:35px;
}

.nav-menu a{

    position:relative;

    transition:.3s;
}

.nav-menu a:hover{

    color:var(--gold);
}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.4s;
}

.nav-menu a:hover::after{

    width:100%;
}


/* ============================= */
/* NAV ICONS */
/* ============================= */

.nav-icons{

    display:flex;

    gap:12px;
}

.nav-icons button{

    width:45px;
    height:45px;

    border-radius:50%;

    border:
    1px solid rgba(255,255,255,.1);

    color:#fff;

    transition:.3s;
}

.nav-icons button:hover{

    background:var(--gold);

    color:#000;
}

.cart-btn{

    position:relative;
}

.cart-count{

    position:absolute;

    top:-5px;
    right:-5px;

    width:20px;
    height:20px;

    border-radius:50%;

    background:var(--gold);

    color:#000;

    font-size:11px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;
}


/* ============================= */
/* HERO */
/* ============================= */

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:120px 0;

    overflow:hidden;
}

.hero-wrapper{

    display:grid;

    grid-template-columns:
    1.1fr
    1fr;

    gap:60px;

    align-items:center;
}


/* ============================= */
/* HERO CONTENT */
/* ============================= */

.hero-content h1{

    font-size:88px;

    line-height:1;

    margin-bottom:25px;

    font-family:
    'Cormorant Garamond',
    serif;

    font-weight:600;
}

.hero-content h1 span{

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.hero-content p{

    color:#c7c7c7;

    max-width:600px;

    line-height:1.9;

    font-size:18px;

    margin-bottom:35px;
}

.hero-tagline{

    display:inline-block;

    margin-bottom:20px;

    color:var(--gold);

    letter-spacing:3px;

    font-size:13px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;
}


/* ============================= */
/* STATS */
/* ============================= */

.hero-stats{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;
}

.stat-box{

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:25px;

    backdrop-filter:blur(20px);
}

.stat-box h3{

    color:var(--gold);

    font-size:28px;

    margin-bottom:8px;
}

.stat-box p{

    margin:0;

    font-size:14px;
}


/* ============================= */
/* HERO IMAGE */
/* ============================= */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;
}

.hero-image img{

    max-width:650px;

    position:relative;

    z-index:2;

    animation:
    floatImage
    6s ease-in-out infinite;
}

@keyframes floatImage{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }
}


/* ============================= */
/* GLOW EFFECTS */
/* ============================= */

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:-1;
}

.glow-1{

    width:500px;
    height:500px;

    background:
    rgba(212,175,55,.18);

    left:-150px;
    top:100px;
}

.glow-2{

    width:400px;
    height:400px;

    background:
    rgba(212,175,55,.12);

    right:-100px;
    bottom:50px;
}

.floating-ring{

    position:absolute;

    width:500px;
    height:500px;

    border:
    1px solid rgba(212,175,55,.15);

    border-radius:50%;

    animation:
    rotateRing
    25s linear infinite;
}

@keyframes rotateRing{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}









/* ================================================= */
/* PART 4B */
/* TRUST BAR + COLLECTIONS + PRODUCTS */
/* ================================================= */


/* ============================= */
/* TRUST BAR */
/* ============================= */

.trust-bar{

    padding:40px 0;

    border-top:
    1px solid rgba(255,255,255,.05);

    border-bottom:
    1px solid rgba(255,255,255,.05);

    background:#080808;
}

.trust-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:25px;
}

.trust-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:20px;

    border-radius:20px;

    background:
    rgba(255,255,255,.02);

    transition:.4s;
}

.trust-item:hover{

    transform:translateY(-8px);

    background:
    rgba(212,175,55,.05);
}

.trust-item i{

    font-size:24px;

    color:var(--gold);
}

.trust-item h4{

    font-size:15px;

    margin-bottom:5px;
}

.trust-item p{

    font-size:13px;

    color:var(--gray);
}


/* ============================= */
/* COLLECTIONS */
/* ============================= */

.collections-section{

    padding:120px 0;
}

.collection-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:25px;
}

.collection-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:var(--bg-card);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.5s;
}

.collection-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 50px
    rgba(0,0,0,.45);
}

.collection-card:hover .card-image img{

    transform:scale(1.08);
}

.card-image{

    height:350px;

    overflow:hidden;
}

.card-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s;
}

.card-content{

    padding:25px;
}

.card-content h3{

    font-size:24px;

    font-family:
    'Cormorant Garamond',
    serif;

    margin-bottom:10px;
}

.card-content p{

    color:var(--gray);

    margin-bottom:20px;
}

.card-content button{

    width:50px;
    height:50px;

    border-radius:50%;

    background:
    rgba(212,175,55,.08);

    color:var(--gold);

    font-size:18px;

    transition:.4s;
}

.collection-card:hover button{

    background:var(--gold);

    color:#000;
}


/* ============================= */
/* BEST SELLERS */
/* ============================= */

.best-sellers{

    padding:120px 0;
}

.view-all-btn{

    color:var(--gold);

    font-weight:600;
}

.products-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:25px;
}


/* ============================= */
/* PRODUCT CARD */
/* ============================= */

.product-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:
    linear-gradient(
    180deg,
    #111111,
    #0b0b0b
    );

    border:
    1px solid rgba(255,255,255,.05);

    transition:.5s;
}

.product-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(212,175,55,.25);

    box-shadow:
    0 25px 60px
    rgba(212,175,55,.08);
}

.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(212,175,55,.04)
    );

    opacity:0;

    transition:.4s;
}

.product-card:hover::before{

    opacity:1;
}


/* ============================= */
/* SALE BADGE */
/* ============================= */

.sale-badge{

    position:absolute;

    top:20px;
    left:20px;

    z-index:5;

    padding:8px 14px;

    border-radius:30px;

    background:var(--gold);

    color:#000;

    font-size:12px;

    font-weight:700;
}


/* ============================= */
/* PRODUCT IMAGE */
/* ============================= */

.product-image{

    height:320px;

    padding:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;
}

.product-image img{

    max-height:260px;

    transition:.7s;
}

.product-card:hover .product-image img{

    transform:
    scale(1.08)
    rotate(-3deg);
}


/* ============================= */
/* PRODUCT CONTENT */
/* ============================= */

.product-content{

    padding:25px;
}

.product-content h3{

    font-size:24px;

    font-family:
    'Cormorant Garamond',
    serif;

    margin-bottom:10px;
}

.product-content p{

    color:var(--gray);

    margin-bottom:18px;
}


/* ============================= */
/* PRICE */
/* ============================= */

.price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;
}

.price del{

    color:#666;
}

.price span{

    color:var(--gold);

    font-size:22px;

    font-weight:700;
}


/* ============================= */
/* ADD TO CART */
/* ============================= */

.product-content button{

    width:100%;

    padding:14px;

    border-radius:50px;

    background:
    rgba(212,175,55,.08);

    color:var(--gold);

    font-weight:600;

    transition:.4s;
}

.product-content button:hover{

    background:var(--gold);

    color:#000;
}


/* ============================= */
/* PRODUCT CARD GLOW */
/* ============================= */

.product-card:hover{

    box-shadow:
    0 0 0 1px rgba(212,175,55,.15),
    0 20px 50px rgba(212,175,55,.08),
    0 0 40px rgba(212,175,55,.06);
}


/* ============================= */
/* SECTION LINKS */
/* ============================= */

.section-header a{

    color:var(--gold);

    transition:.3s;
}

.section-header a:hover{

    opacity:.75;
}


/* ============================= */
/* COLLECTION CARD GOLD BORDER */
/* ============================= */

.collection-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:30px;

    border:
    1px solid transparent;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.15),
    transparent
    );

    opacity:0;

    transition:.4s;
}

.collection-card:hover::after{

    opacity:1;
}







/* ================================================= */
/* PART 4C */
/* STORY + WHY CHOOSE US */
/* ================================================= */


/* ============================= */
/* STORY SECTION */
/* ============================= */

.story-section{

    padding:140px 0;

    position:relative;

    overflow:hidden;
}


/* ============================= */
/* STORY GLOW */
/* ============================= */

.story-glow{

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    rgba(212,175,55,.08);

    filter:blur(150px);

    top:50%;

    left:-250px;

    transform:translateY(-50%);
}


/* ============================= */
/* STORY WRAPPER */
/* ============================= */

.story-wrapper{

    display:grid;

    grid-template-columns:
    1fr
    1fr
    320px;

    gap:50px;

    align-items:center;
}


/* ============================= */
/* STORY IMAGE */
/* ============================= */

.story-image{

    position:relative;
}

.story-image img{

    width:100%;

    border-radius:35px;

    object-fit:cover;

    min-height:650px;

    border:
    1px solid rgba(255,255,255,.05);
}


/* ============================= */
/* YEARS BADGE */
/* ============================= */

.years-badge{

    position:absolute;

    bottom:30px;
    left:30px;

    background:
    rgba(5,5,5,.9);

    backdrop-filter:blur(25px);

    border:
    1px solid rgba(212,175,55,.15);

    border-radius:25px;

    padding:25px 30px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.4);
}

.years-badge span{

    display:block;

    font-size:42px;

    color:var(--gold);

    font-weight:700;

    margin-bottom:5px;
}


/* ============================= */
/* STORY CONTENT */
/* ============================= */

.story-content h2{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

    font-family:
    'Cormorant Garamond',
    serif;
}

.story-content p{

    color:#c9c9c9;

    line-height:1.9;

    margin-bottom:20px;

    font-size:17px;
}

.story-content .btn-primary{

    margin-top:20px;
}


/* ============================= */
/* STORY FEATURES */
/* ============================= */

.story-features{

    display:flex;

    flex-direction:column;

    gap:20px;
}


/* ============================= */
/* FEATURE BOX */
/* ============================= */

.feature-box{

    display:flex;

    align-items:center;

    gap:20px;

    padding:25px;

    border-radius:25px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.4s;
}

.feature-box:hover{

    transform:
    translateX(10px);

    border-color:
    rgba(212,175,55,.15);

    background:
    rgba(212,175,55,.04);
}

.feature-box i{

    width:65px;
    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:
    rgba(212,175,55,.08);

    color:var(--gold);

    font-size:24px;
}

.feature-box h4{

    font-size:18px;

    margin-bottom:6px;
}

.feature-box p{

    margin:0;

    color:var(--gray);

    font-size:14px;
}


/* ============================= */
/* WHY CHOOSE SECTION */
/* ============================= */

.why-choose{

    padding:140px 0;
}


/* ============================= */
/* WHY GRID */
/* ============================= */

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}


/* ============================= */
/* WHY CARD */
/* ============================= */

.why-card{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:45px 35px;

    border-radius:35px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
    );

    border:
    1px solid rgba(255,255,255,.05);

    transition:.5s;
}

.why-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(212,175,55,.15);

    box-shadow:
    0 20px 50px rgba(212,175,55,.08);
}


/* ============================= */
/* WHY CARD ICON */
/* ============================= */

.why-card i{

    width:90px;
    height:90px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:34px;

    color:var(--gold);

    background:
    rgba(212,175,55,.08);

    transition:.4s;
}

.why-card:hover i{

    transform:
    rotate(10deg)
    scale(1.08);

    background:
    rgba(212,175,55,.15);
}


/* ============================= */
/* WHY CARD TEXT */
/* ============================= */

.why-card h3{

    font-size:28px;

    margin-bottom:15px;

    font-family:
    'Cormorant Garamond',
    serif;
}

.why-card p{

    color:var(--gray);

    line-height:1.8;
}


/* ============================= */
/* GOLD TOP LINE */
/* ============================= */

.why-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:2px;

    background:
    linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
    );

    opacity:0;

    transition:.4s;
}

.why-card:hover::before{

    opacity:1;
}


/* ============================= */
/* GOLD CORNER GLOW */
/* ============================= */

.why-card::after{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:
    rgba(212,175,55,.06);

    filter:blur(40px);

    top:-40px;
    right:-40px;

    opacity:0;

    transition:.5s;
}

.why-card:hover::after{

    opacity:1;
}







/* ================================================= */
/* PART 4D */
/* TESTIMONIALS + BLOG + NEWSLETTER + INSTAGRAM */
/* ================================================= */


/* ============================= */
/* TESTIMONIALS */
/* ============================= */

.testimonials-section{

    padding:140px 0;

    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,.01),
    transparent
    );
}

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.testimonial-card{

    padding:40px;

    border-radius:35px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.4s;
}

.testimonial-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(212,175,55,.15);

    box-shadow:
    0 20px 50px rgba(212,175,55,.08);
}

.stars{

    color:var(--gold);

    font-size:20px;

    margin-bottom:20px;

    letter-spacing:4px;
}

.testimonial-card p{

    color:#d2d2d2;

    line-height:1.9;

    margin-bottom:30px;
}


/* ============================= */
/* AUTHOR */
/* ============================= */

.author{

    display:flex;

    align-items:center;

    gap:15px;
}

.author img{

    width:65px;
    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:
    2px solid rgba(212,175,55,.15);
}

.author h4{

    margin-bottom:5px;
}

.author span{

    color:var(--gray);

    font-size:14px;
}


/* ============================= */
/* BLOG SECTION */
/* ============================= */

.blog-section{

    padding:140px 0;
}

.blog-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}


/* ============================= */
/* BLOG CARD */
/* ============================= */

.blog-card{

    overflow:hidden;

    border-radius:35px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.5s;
}

.blog-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(212,175,55,.15);
}

.blog-image{

    overflow:hidden;

    height:280px;
}

.blog-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s;
}

.blog-card:hover .blog-image img{

    transform:scale(1.08);
}

.blog-content{

    padding:30px;
}

.blog-content span{

    color:var(--gold);

    font-size:13px;

    letter-spacing:2px;

    display:block;

    margin-bottom:15px;
}

.blog-content h3{

    font-size:30px;

    line-height:1.3;

    margin-bottom:20px;

    font-family:
    'Cormorant Garamond',
    serif;
}

.blog-content a{

    color:var(--gold);

    font-weight:600;
}


/* ============================= */
/* NEWSLETTER */
/* ============================= */

.newsletter-section{

    padding:120px 0;

    position:relative;

    overflow:hidden;
}


/* ============================= */
/* NEWSLETTER GLOW */
/* ============================= */

.newsletter-glow{

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(212,175,55,.08);

    filter:blur(180px);

    left:50%;

    top:50%;

    transform:
    translate(-50%,-50%);
}


/* ============================= */
/* NEWSLETTER BOX */
/* ============================= */

.newsletter-box{

    position:relative;

    z-index:2;

    max-width:950px;

    margin:auto;

    text-align:center;

    padding:80px;

    border-radius:40px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(212,175,55,.12);

    backdrop-filter:blur(25px);
}

.newsletter-box span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:13px;
}

.newsletter-box h2{

    font-size:60px;

    margin:20px 0;

    font-family:
    'Cormorant Garamond',
    serif;
}

.newsletter-box p{

    max-width:650px;

    margin:auto;

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:35px;
}


/* ============================= */
/* NEWSLETTER FORM */
/* ============================= */

.newsletter-box form{

    display:flex;

    gap:15px;

    justify-content:center;
}

.newsletter-box input{

    width:450px;

    height:60px;

    padding:0 25px;

    border-radius:50px;

    border:
    1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.03);

    color:#fff;

    outline:none;
}

.newsletter-box button{

    height:60px;

    padding:0 35px;

    border-radius:50px;

    background:var(--gradient);

    color:#000;

    font-weight:700;

    transition:.3s;
}

.newsletter-box button:hover{

    transform:
    translateY(-3px);
}


/* ============================= */
/* INSTAGRAM */
/* ============================= */

.instagram-section{

    padding:140px 0;
}

.instagram-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:20px;
}


/* ============================= */
/* INSTA ITEM */
/* ============================= */

.insta-item{

    overflow:hidden;

    border-radius:25px;

    position:relative;

    cursor:pointer;
}

.insta-item img{

    width:100%;
    height:320px;

    object-fit:cover;

    transition:.8s;
}

.insta-item:hover img{

    transform:scale(1.1);
}


/* ============================= */
/* INSTAGRAM OVERLAY */
/* ============================= */

.insta-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,
    transparent,
    rgba(0,0,0,.6)
    );

    opacity:0;

    transition:.4s;

    z-index:1;
}

.insta-item:hover::before{

    opacity:1;
}

.insta-item::after{

    content:"\f16d";

    font-family:
    "Font Awesome 6 Brands";

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    color:#fff;

    font-size:34px;

    opacity:0;

    z-index:2;

    transition:.4s;
}

.insta-item:hover::after{

    opacity:1;
}


/* ============================= */
/* EXTRA GLOW EFFECT */
/* ============================= */

.blog-card:hover,
.testimonial-card:hover,
.insta-item:hover{

    box-shadow:
    0 0 0 1px rgba(212,175,55,.10),
    0 20px 60px rgba(212,175,55,.08);
}








/* ================================================= */
/* PART 4E */
/* FOOTER + COPYRIGHT + RESPONSIVE */
/* ================================================= */


/* ============================= */
/* FOOTER */
/* ============================= */

.main-footer{

    padding:120px 0 70px;

    background:#030303;

    border-top:
    1px solid rgba(255,255,255,.05);
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:60px;
}


/* ============================= */
/* FOOTER LOGO */
/* ============================= */

.footer-logo{

    font-size:32px;

    font-family:
    'Cormorant Garamond',
    serif;

    color:var(--gold);

    margin-bottom:25px;
}

.footer-col p{

    color:#bcbcbc;

    line-height:1.9;

    max-width:380px;
}


/* ============================= */
/* FOOTER TITLES */
/* ============================= */

.footer-col h4{

    margin-bottom:25px;

    font-size:22px;

    color:#fff;

    font-family:
    'Cormorant Garamond',
    serif;
}

.footer-col ul{

    display:flex;

    flex-direction:column;

    gap:14px;
}

.footer-col ul li{

    color:#bdbdbd;

    transition:.3s;
}

.footer-col ul li:hover{

    color:var(--gold);
}


/* ============================= */
/* SOCIAL */
/* ============================= */

.social-icons{

    display:flex;

    gap:15px;

    margin-top:30px;
}

.social-icons a{

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    border:
    1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.social-icons a:hover{

    background:var(--gold);

    color:#000;

    transform:translateY(-5px);
}


/* ============================= */
/* COPYRIGHT */
/* ============================= */

.copyright-bar{

    border-top:
    1px solid rgba(255,255,255,.05);

    padding:25px 0;

    text-align:center;

    background:#000;
}

.copyright-bar p{

    color:#888;

    font-size:14px;
}


/* ============================= */
/* UTILITIES */
/* ============================= */

.text-center{
    text-align:center;
}

.mt-50{
    margin-top:50px;
}

.mt-80{
    margin-top:80px;
}

.mb-50{
    margin-bottom:50px;
}

.mb-80{
    margin-bottom:80px;
}


/* ============================= */
/* SCROLLBAR */
/* ============================= */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#050505;
}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;
}


/* ============================= */
/* SELECTION */
/* ============================= */

::selection{

    background:var(--gold);

    color:#000;
}


/* ================================================= */
/* RESPONSIVE */
/* ================================================= */


/* ============================= */
/* 1400px */
/* ============================= */

@media(max-width:1400px){

    .hero-content h1{

        font-size:72px;
    }

    .section-header h2{

        font-size:52px;
    }

    .story-content h2{

        font-size:54px;
    }
}


/* ============================= */
/* 1200px */
/* ============================= */

@media(max-width:1200px){

    .collection-grid{

        grid-template-columns:
        repeat(3,1fr);
    }

    .products-grid{

        grid-template-columns:
        repeat(3,1fr);
    }

    .why-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .story-wrapper{

        grid-template-columns:
        1fr;
    }

    .footer-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .instagram-grid{

        grid-template-columns:
        repeat(3,1fr);
    }

    .hero-wrapper{

        grid-template-columns:
        1fr;
    }

    .hero-image{

        order:-1;
    }
}


/* ============================= */
/* 992px */
/* ============================= */

@media(max-width:992px){

    .nav-menu{

        display:none;
    }

    .hero-content{

        text-align:center;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-stats{

        grid-template-columns:
        repeat(2,1fr);
    }

    .trust-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .testimonial-grid{

        grid-template-columns:
        1fr;
    }

    .blog-grid{

        grid-template-columns:
        1fr;
    }

    .newsletter-box{

        padding:60px 40px;
    }

    .newsletter-box h2{

        font-size:48px;
    }

    .newsletter-box form{

        flex-direction:column;

        align-items:center;
    }

    .newsletter-box input{

        width:100%;
    }
}


/* ============================= */
/* 768px */
/* ============================= */

@media(max-width:768px){

    .hero-content h1{

        font-size:52px;
    }

    .section-header{

        flex-direction:column;

        align-items:flex-start;
    }

    .section-header.center{

        align-items:center;
    }

    .section-header h2{

        font-size:42px;
    }

    .story-content h2{

        font-size:42px;
    }

    .collection-grid{

        grid-template-columns:
        1fr;
    }

    .products-grid{

        grid-template-columns:
        1fr;
    }

    .why-grid{

        grid-template-columns:
        1fr;
    }

    .instagram-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .footer-grid{

        grid-template-columns:
        1fr;
    }

    .top-bar .container{

        flex-direction:column;

        gap:10px;
    }
}


/* ============================= */
/* 576px */
/* ============================= */

@media(max-width:576px){

    .container{

        width:92%;
    }

    .hero-content h1{

        font-size:42px;
    }

    .hero-stats{

        grid-template-columns:
        1fr;
    }

    .trust-grid{

        grid-template-columns:
        1fr;
    }

    .newsletter-box{

        padding:40px 25px;
    }

    .newsletter-box h2{

        font-size:34px;
    }

    .instagram-grid{

        grid-template-columns:
        1fr;
    }

    .nav-icons{

        gap:8px;
    }

    .nav-icons button{

        width:40px;
        height:40px;
    }

    .logo-box{

        width:45px;
        height:45px;
    }

    .logo-text span{

        font-size:14px;
    }

    .logo-text small{

        font-size:11px;
    }
}


/* ================================================= */
/* END OF STYLE.CSS */
/* ================================================= */