/*==================================================
GLore Fashion Premium Product Template V1
Version : 1.0
Author  : Sher Muhammad + ChatGPT
==================================================*/



/*==================================================
01 VARIABLES
==================================================*/



:root{

    --gf-gold:#D4AF37;
    --gf-gold-light:#F8E8B0;

    --gf-black:#111111;
    --gf-dark:#1D1D1D;

    --gf-text:#666666;

    --gf-bg:#FFFDF9;

    --gf-card:#FFFFFF;

    --gf-border:#ECE4D6;

    --gf-radius:24px;

}



/*==================================================
02 RESET
==================================================*/

*{

    box-sizing:border-box;

}

body.single-product{

    background:

        radial-gradient(
            circle at top right,
            rgba(212,175,55,.05),
            transparent 34%
        ),

        radial-gradient(
            circle at bottom left,
            rgba(212,175,55,.04),
            transparent 40%
        ),

        linear-gradient(
            180deg,
            #FFFDFB,
            #FAF8F3
        );

}



/*==================================================
03 MAIN LAYOUT
==================================================*/

.gf-product-page{

    padding:60px 0 80px;

}

.gf-container{

    width:min(1400px,92%);
    margin:auto;

}

.gf-top{

    display:grid;

    grid-template-columns:520px 1fr;

    gap:90px;

    align-items:start;

}


.gf-summary{

    width:100%;

}

.gf-title{

    margin:0;

    font-size:clamp(42px,4vw,72px);

    line-height:1.05;

    font-weight:800;

    color:var(--gf-black);

    letter-spacing:-2px;

}

.gf-divider{

    width:70px;

    height:4px;

    border-radius:20px;

    background:var(--gf-gold);

    margin:28px 0;

}

.gf-short-description{

    font-size:19px;

    line-height:1.9;

    color:var(--gf-text);

    max-width:760px;

}

.gf-short-description p{

    margin:0 0 18px;

}

.gf-section-title{

    margin:50px 0 24px;

    font-size:38px;

    font-weight:800;

    color:var(--gf-black);

}

.gf-description{

    margin-top:120px;

}



/*==================================================
04 GALLERY
==================================================*/

.gf-gallery{

    position:sticky;

    top:120px;

    background:#fff;

    border:1px solid rgba(212,175,55,.12);

    border-radius:34px;

    padding:22px;

    box-shadow:

        0 20px 60px rgba(0,0,0,.06),

        0 10px 30px rgba(212,175,55,.08);

    overflow:hidden;

}



.gf-gallery-main{

    background:
radial-gradient(
circle at top,
#ffffff,
#fafafa
);

    border:1px solid var(--gf-border);

    position:relative;

    overflow:hidden;

    border-radius:24px;

    padding:18px;

    box-shadow:

        0 25px 60px rgba(0,0,0,.06);

}


.gf-gallery::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    right:-120px;

    top:-120px;

    background:radial-gradient(

        rgba(212,175,55,.14),

        transparent 70%

    );

    pointer-events:none;

}



.gf-main-image{

    width:100%;

    display:block;

    transition:

        transform .6s ease,

        opacity .35s ease;

}


.gf-gallery-main:hover .gf-main-image{

    transform:scale(1.05);

}



.gf-thumbnails{

    display:flex;

    justify-content:center;

    gap:14px;

    margin-top:22px;

}


.gf-thumb{

    width:88px;

    height:88px;

    border-radius:18px;

    overflow:hidden;

    cursor:pointer;

    border:2px solid transparent;

    transition:.35s;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.gf-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.gf-thumb:hover{

    transform:translateY(-6px);

}

.gf-thumb:hover img{

    transform:scale(1.08);

}

.gf-thumb.active{

    border-color:var(--gf-gold);

    box-shadow:

        0 15px 35px rgba(212,175,55,.25);

}



.gf-thumb.active img{

    transform:scale(1.05);

}



.gf-thumb img{

    transition:.35s ease;

}


.gf-gallery-main::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        120deg,

        transparent 20%,

        rgba(255,255,255,.28) 50%,

        transparent 80%

    );

    transform:translateX(-140%);

    transition:1.1s;

    pointer-events:none;

}

.gf-gallery:hover .gf-gallery-main::after{

    transform:translateX(140%);

}


.gf-thumb:hover{

    transform:translateY(-6px) scale(1.04);

    box-shadow:

        0 18px 35px rgba(212,175,55,.18);

}


/*==========================================
GALLERY BADGES
==========================================*/

.gf-gallery-badges{

    position:absolute;

    top:18px;

    left:18px;

    z-index:5;

    display:flex;

    gap:10px;

}

.gf-gallery-badges span{

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    border:1px solid rgba(212,175,55,.25);

    font-size:12px;

    font-weight:700;

    color:#111;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}


/*==========================================
RELATED PRODUCT BADGE
==========================================*/

.gf-related-badge{

    position:absolute;

    top:16px;

    left:16px;

    padding:8px 14px;

    background:#111;

    color:#fff;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

    border-radius:999px;

    z-index:5;

}


/*==================================================
05 SUMMARY
==================================================*/


.gf-summary{

    display:flex;
    flex-direction:column;

}

.gf-title{

    margin:0;

    color:var(--gf-black);

    font-size:clamp(42px,4vw,68px);

    line-height:1.05;

    font-weight:800;

    letter-spacing:-2px;

}

.gf-divider{

    width:75px;
    height:4px;

    margin:28px 0;

    border-radius:100px;

    background:linear-gradient(
        90deg,
        #D4AF37,
        #FFD86A
    );

}

.gf-short-description{

    color:var(--gf-text);

    font-size:18px;

    line-height:1.9;

    margin-bottom:34px;

}

.gf-short-description p{

    margin:0;

}


/*==================================================
06 TRUST BADGES
==================================================*/


.gf-trust-row{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:34px;

}

.gf-badge{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px 18px;

    background:#fff;

    border:1px solid var(--gf-border);

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    color:#333;

    transition:.35s;

}

.gf-badge:hover{

    transform:translateY(-3px);

    border-color:var(--gf-gold);

    box-shadow:

        0 12px 25px rgba(212,175,55,.15);

}


.gf-highlight{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:18px 24px;

    margin-bottom:44px;

    border-radius:22px;

    background:

        linear-gradient(
            135deg,
            #FFF8E8,
            #FFFDF8
        );

    border:1px solid rgba(212,175,55,.25);

    color:#8A6400;

    font-size:18px;

    font-weight:700;

}


/*==================================================
SECTION HEADER
==================================================*/

.gf-section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.gf-section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:#FFF8E8;

    border:1px solid rgba(212,175,55,.25);

    color:var(--gf-gold);

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.gf-section-title{

    margin:0;

    font-size:52px;

    font-weight:800;

    color:#111;

    line-height:1.15;

}

.gf-section-subtitle{

    margin:20px auto 0;

    max-width:640px;

    color:#666;

    font-size:18px;

    line-height:1.9;

}

/*==================================================
07 FEATURE CARDS
==================================================*/


.gf-features{

    display:flex;

    flex-direction:column;

    max-width:1000px;

    margin:0 auto;

    gap:18px;

}

.gf-feature-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:22px;

    padding:20px 28px;

    min-height:88px;

    background:var(--gf-card);

    border:1px solid var(--gf-border);

    border-radius:24px;

    overflow:hidden;

    transition:
        transform .35s,
        border-color .35s,
        box-shadow .35s;

}

.gf-feature-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;

    height:0;

    border-radius:10px;

    background:linear-gradient(
        180deg,
        #FFD86A,
        #D4AF37
    );

    transition:.35s;

}

.gf-feature-card > div:last-child{

    flex:1;

}

.gf-feature-card:hover{

    transform:translateY(-8px);

    border-color:var(--gf-gold);

    box-shadow:

        0 20px 45px rgba(0,0,0,.07),

        0 12px 28px rgba(212,175,55,.18);

}

.gf-feature-card:hover::before{

    height:100%;

}


.gf-icon{

    width:58px;
    height:58px;

    min-width:58px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:

        linear-gradient(
            135deg,
            #FFF9EA,
            #FFF2C7
        );

    border:1px solid rgba(212,175,55,.25);

    font-size:28px;

    transition:.35s;

}

.gf-feature-card:hover .gf-icon{

    transform:

        rotate(-8deg)

        scale(1.08);

}


.gf-feature-card h4{

    margin:0 0 10px;

    font-size:22px;

    font-weight:700;

    line-height:1.3;

    color:var(--gf-black);

}

.gf-feature-card p{

    margin:0;

    font-size:15px;

    line-height:1.8;

    color:var(--gf-text);

}


/*==================================================
08 BUTTONS
==================================================*/


.gf-related-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 20px;

    margin-top:18px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #D4AF37,
        #FFD86A
    );

    color:#111;

    font-size:14px;

    font-weight:700;

    transition:.35s;

}

.gf-related-card:hover .gf-related-btn{

    transform:translateY(-2px);

    box-shadow:

        0 12px 28px rgba(212,175,55,.25);

}

/*==========================================
FACTORY OFFER
==========================================*/

.gf-offer-box{

    margin:35px 0;

    padding:28px;

    background:linear-gradient(135deg,#FFF8E7,#FFFDF9);

    border:2px solid rgba(212,175,55,.25);

    border-radius:26px;

    box-shadow:0 18px 45px rgba(212,175,55,.12);

}

.gf-offer-note{

    margin-top:18px;

    padding-top:18px;

    border-top:1px dashed rgba(212,175,55,.25);

    font-size:14px;

    font-weight:600;

    color:#8A6A00;

    text-align:center;

}

.gf-offer-header{

    font-size:22px;

    font-weight:800;

    color:#111;

    margin-bottom:22px;

}

.gf-countdown{

    display:flex;

    gap:18px;

    margin-bottom:22px;

}

.gf-time{

    flex:1;

    text-align:center;

    background:#fff;

    border-radius:16px;

    padding:18px 8px;

    border:1px solid var(--gf-border);

}

.gf-time span{

    display:block;

    font-size:34px;

    font-weight:800;

    color:var(--gf-gold);

}

.gf-time small{

    color:#777;

    font-size:13px;

}

.gf-offer-list{

    margin:0;

    padding:0;

    list-style:none;

}

.gf-offer-list li{

    padding:8px 0;

    font-size:16px;

}

/*==================================================
ONLINE STATUS
==================================================*/

.gf-online{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:10px;

    margin-bottom:18px;

    padding:14px 18px;

    background:#F7FFF8;

    border:1px solid rgba(37,211,102,.18);

    border-radius:18px;

}

.gf-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#25D366;

    position:relative;

}

.gf-dot::after{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    border:2px solid rgba(37,211,102,.35);

    animation:gfPulse 2s infinite;

}

@keyframes gfPulse{

0%{

transform:scale(.6);

opacity:1;

}

100%{

transform:scale(2.3);

opacity:0;

}

}

.gf-online strong{

    display:block;

    font-size:16px;

    color:#14863F;

}

.gf-online small{

    display:block;

    margin-top:3px;

    color:#666;

}


.gf-buttons{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.gf-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:64px;

    border-radius:18px;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.gf-btn-whatsapp{

    color:#fff;

    background:

        linear-gradient(
            135deg,
            #25D366,
            #18B957
        );

    box-shadow:

        0 18px 35px rgba(37,211,102,.28);

}

.gf-btn-whatsapp:hover{

    color:#fff;

    transform:translateY(-4px);

}

.gf-btn-outline{

    color:#111;

    background:#FFFDF8;

    border:2px solid var(--gf-gold);

}

.gf-btn-outline:hover{

    background:var(--gf-gold);

    color:#111;

    transform:translateY(-4px);

}




/*==================================================
09 DESCRIPTION
==================================================*/

.gf-description{

    margin-top:100px;

}

.gf-tabs{

display:flex;

align-items:center;

justify-content:flex-start;

align-items:flex-end;

flex-wrap:wrap;

gap:12px;

margin:80px 0 45px;

padding-bottom:25px;

border-bottom:1px solid #ECECEC;

}

.gf-tab{

    background:none;

    border:none;

    padding:0;

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#777;

    cursor:pointer;

    position:relative;

    transition:.3s;

}

.gf-tab:hover{

    color:#111;

}

.gf-tab.active{

    color:#111;

    background:none;

    box-shadow:none;

    border:none;

}


.gf-tab.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-20px;

    width:100%;

    height:3px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #D4AF37,
        #FFD86A
    );

}

.gf-tab-content{

display:none;

padding:45px;

background:#fff;

border:1px solid #EFE8D8;

border-radius:26px;

box-shadow:0 20px 45px rgba(0,0,0,.05);

animation:fadeIn .35s ease;

}

.gf-tab-content.active{

display:block;

}

.gf-tab-content p{

    font-size:17px;

    line-height:1.9;

    color:#555;

}

.gf-spec-list{

    margin:0;

    padding:0;

    list-style:none;

}

.gf-spec-list li{

    padding:18px 0;

    border-bottom:1px solid #f1f1f1;

    font-size:17px;

    color:#555;

}

.gf-spec-list li:last-child{

    border-bottom:none;

}

.gf-spec-list strong{

    color:#111;

}

@keyframes gfFade{

    from{

        opacity:0;

        transform:translateY(15px);

    }

    to{

        opacity:1;

        transform:none;

    }

}




/*==================================================
10 RELATED PRODUCTS
==================================================*/

.gf-related{

    margin-top:120px;

}

.gf-related-title{

    margin:0 0 45px;

    text-align:center;

    font-size:48px;

    font-weight:800;

    color:var(--gf-black);

    letter-spacing:-1px;

}

.gf-related-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.gf-related-card{

    height:100%;

    display:flex;

    flex-direction:column;

    text-decoration:none;

    background:#fff;

    border:1px solid var(--gf-border);

    border-radius:28px;

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.gf-related-card:hover{

    transform:translateY(-10px);

    border-color:var(--gf-gold);

    box-shadow:
        0 25px 55px rgba(0,0,0,.08),
        0 12px 28px rgba(212,175,55,.18);

}

.gf-related-image{

    position:relative;

    background:#FAF8F4;

    padding:24px;

    aspect-ratio:1/1;

    display:flex;

    align-items:center;

    justify-content:center;

}

.gf-related-image img{

    max-width:100%;

    max-height:100%;

    object-fit:contain;

    transition:transform .35s ease;

}

.gf-related-card:hover .gf-related-image img{

    transform:scale(1.08) rotate(.5deg);

}

.gf-related-content{

    padding:24px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.gf-related-content h3{

    margin:0 0 14px;

    color:#111;

    font-size:22px;

    line-height:1.35;

    font-weight:700;

}

.gf-related-content span{

    color:var(--gf-gold);

    font-weight:700;

    transition:letter-spacing .35s ease;

}

.gf-related-card:hover .gf-related-content span{

    letter-spacing:1px;

}



/*==================================================
11 RESPONSIVE
==================================================*/


@media(max-width:1200px){

.gf-top{

grid-template-columns:400px 1fr;

gap:50px;

}

}


@media(max-width:992px){

.gf-top{

grid-template-columns:1fr;

}

.gf-gallery{

position:relative;

top:auto;

margin-bottom:50px;

}

.gf-title{

font-size:48px;

}

}


@media(max-width:768px){

.gf-container{

width:94%;

}

.gf-gallery{

    position:relative;

    top:auto;

}

.gf-title{

font-size:38px;

line-height:1.15;

}

.gf-short-description{

font-size:17px;

line-height:1.8;

}

}


@media(max-width:768px){

.gf-features{

grid-template-columns:1fr;

}

.gf-buttons{

grid-template-columns:1fr;

}

.gf-trust-row{

justify-content:center;

}

.gf-online{

text-align:center;

justify-content:center;

flex-direction:column;

}


.gf-tabs{

    justify-content:center;

    gap:18px;

}

.gf-tab{

    width:auto;

    font-size:16px;

}

.gf-tab-content{

    padding:28px;

}

}



@media(max-width:1200px){

.gf-related-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gf-related-title{

    font-size:34px;

    margin-bottom:30px;

}

.gf-related-grid{

    display:flex;

    gap:18px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;

    padding-bottom:10px;

}

.gf-related-grid::-webkit-scrollbar{

    display:none;

}

.gf-related-card{

    min-width:280px;

    max-width:280px;

    flex-shrink:0;

    scroll-snap-align:start;

}

}


/* Hide WooCommerce Breadcrumb */

.woocommerce-breadcrumb{

    display:none !important;

}


/*==================================================
LIVE ACTIVITY POPUP
==================================================*/

.gf-live-popup{

    position:fixed;

    left:30px;

    bottom:30px;

    width:340px;

    background:#fff;

    border:1px solid rgba(212,175,55,.18);

    border-radius:20px;

    padding:18px;

    display:flex;

    align-items:center;

    gap:16px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.12);

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transform:translateY(40px);

    transition:.45s ease;

}

.gf-live-popup.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.gf-live-flag{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#FFF8E7;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.gf-live-content{

    flex:1;

}

.gf-live-content strong{

    display:block;

    font-size:16px;

    color:#111;

    margin-bottom:4px;

}

.gf-live-content span{

    display:block;

    color:#666;

    font-size:14px;

    margin-bottom:6px;

}

.gf-live-content small{

    color:var(--gf-gold);

    font-weight:600;

}

@media(max-width:768px){

.gf-live-popup{

left:15px;

right:15px;

bottom:15px;

width:auto;

}

}