
:root{
--green:#031712;
--green2:#07231b;
--gold:#caa46b;
--text:#1f1f1f;
--border:#ece5db;
--light:#fbf8f3;
    --lux-gold:#caa46b;
    --lux-dark:#071510;
    --lux-text:#1f1f1f;
    --lux-muted:#777;
    --lux-border:#ece4d8;
    --lux-light:#faf7f2;
}

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

body{
font-family:'Inter',sans-serif;
color:var(--text);
background:#fff;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
transition:.3s;
}

ul{
padding:0;
margin:0;
list-style:none;
}
h1, h2, h3, h4{ font-family:'Cormorant Garamond',serif; }
.container{
max-width:1420px;
}

/* TOP BAR */
.topbar{
background:linear-gradient(90deg,#02120e,#083126);
padding:12px 0;
}

.topbar p,
.topbar a{
color:#f2e6d3;
font-size:13px;
letter-spacing:.4px;
margin:0;
}

.topbar-center{
text-align:center;
}

.topbar-right{
text-align:right;
}

/* HEADER */
.main-header{
background:#fff;
border-bottom:1px solid #efe8dd;
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:24px 0;
}

.logo img{
height:78px;
}

.main-nav ul{
display:flex;
align-items:center;
gap:42px;
}

.main-nav ul li a{
font-size:13px;
text-transform:uppercase;
font-weight:600;
letter-spacing:1px;
color:#1b1b1b;
position:relative;
padding-bottom:10px;
}

.main-nav ul li a:after{
content:'';
position:absolute;
left:0;
bottom:0;
width:0;
height:2px;
background:var(--gold);
transition:.3s;
}

.main-nav ul li a:hover{
color:var(--gold);
}

.main-nav ul li a:hover:after{
width:100%;
}

.header-icons{
display:flex;
align-items:center;
gap:14px;
}

.header-icons a{
width:48px;
height:48px;
border-radius:50%;
border:1px solid #e5dac8;
display:flex;
align-items:center;
justify-content:center;
color:#111;
font-size:18px;
}

.header-icons a:hover{
background:var(--gold);
border-color:var(--gold);
color:#fff;
transform:translateY(-2px);
}

/* HERO */
.hero{
position:relative;
background:linear-gradient(90deg,#031611 10%,#021c17 50%,#041913 100%);
overflow:hidden;
}

.hero .container-fluid{
padding:0;
}

.hero-row{
display:flex;
align-items:center;
min-height:760px;
}

.hero-content{
padding-left:90px;
position:relative;
z-index:2;
}

.hero-sub{
font-size:26px;
color:var(--gold);
margin-bottom:20px;
font-family:'Cormorant Garamond',serif;
}

.hero h1{
font-size:86px;
line-height:0.95;
color:#fff;
font-family:'Cormorant Garamond',serif;
font-weight:600;
margin-bottom:26px;
}

.hero p{
font-size:19px;
line-height:32px;
color:#ddd;
max-width:520px;
margin-bottom:38px;
}

.hero-btn{
display:inline-flex;
align-items:center;
justify-content:center;
height:58px;
padding:0 38px;
background:var(--gold);
color:#fff;
font-size:14px;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;
}

.hero-btn:hover{
background:#fff;
color:#111;
}

.hero-image{
height:760px;
position:relative;
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* FEATURES */
.features{
padding:0;
border-bottom:1px solid var(--border);
}

.feature-box{
height:140px;
display:flex;
align-items:center;
gap:20px;
padding:0 40px;
border-right:1px solid var(--border);
}

.feature-box i{
font-size:42px;
color:var(--gold);
}

.feature-box h4{
font-size:18px;
margin-bottom:8px;
font-weight:600;
}

.feature-box p{
margin:0;
font-size:15px;
color:#666;
}

/* SECTION TITLE */
.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:60px;
font-family:'Cormorant Garamond',serif;
margin-bottom:0;
}

.section-title span{
color:var(--gold);
text-transform:uppercase;
font-size:13px;
letter-spacing:3px;
font-weight:600;
}

/* PRODUCTS */
.products{
padding:110px 0;
background:#fff;
}

.product-card{
position:relative;
background:#faf7f2;
padding:26px;
transition:.35s;
height:100%;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.product-tag{
position:absolute;
top:18px;
left:18px;
background:var(--gold);
color:#fff;
padding:6px 12px;
font-size:11px;
font-weight:700;
letter-spacing:1px;
}

.product-img{
height:200px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:20px;
}

.product-img img{
max-height:200px;
object-fit:contain; mix-blend-mode: darken;
}

.product-card h4{
font-size:18px;
font-weight:600;
margin-bottom:8px;
}
.product-card h4 a{ color:#000 }

.product-card p{
font-size:14px;
color:#666;
margin-bottom:12px;
}

.price{
font-size:24px;
font-weight:700;
margin-bottom:12px;
}

.stars{
color:#d7a457;
font-size:13px;
letter-spacing:2px;
}

/* BANNER */
.collection-banner{
padding-bottom:110px;
}

.banner-box{
position:relative;
overflow:hidden;
}

.banner-box img{
width:100%;
height:440px;
object-fit:cover;
}

.banner-content{
position:absolute;
left:30%;
top:50%;
transform:translateY(-50%);
max-width:520px;
}

.banner-content span{
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
color:var(--gold);
font-weight:700;
}

.banner-content h3{
font-size:62px;
font-family:'Cormorant Garamond',serif;
color:#fff;
margin:14px 0 16px;
}

.banner-content p{
font-size:18px;
line-height:30px;
color:#eee;
margin-bottom:30px;
}

/* CATEGORIES */
.categories{
padding-bottom:110px;
}

.category-card{
text-align:center;
}

.category-image{
background:#faf7f2;
padding:0px;
margin-bottom:20px;
}

.category-image img{
height:auto;
object-fit:contain;
margin:auto;
}

.category-card h4{
font-size:20px; font-family: 'Cormorant Garamond',serif;
font-weight:600;
}
.category-card h4 a{ color:#000; }

/* MINI BANNERS */
.mini-banners{
padding-bottom:110px;
}

.mini-banner{
position:relative;
overflow:hidden;
}

.mini-banner img{
width:100%;
height:280px;
object-fit:cover;
}

.mini-banner-content{
position:absolute;
left:50px;
top:50%;
transform:translateY(-50%);
}

.mini-banner-content span{
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
color:var(--gold);
font-weight:700;
}

.mini-banner-content h3{
font-size:42px;
font-family:'Cormorant Garamond',serif;
margin:12px 0 18px;
}

/* PROMISE */
.promise{
padding:110px 0;
background:#faf7f2;
}

.promise-image img{
height:520px;
width:100%;
object-fit:cover;
}

.promise-content{
padding-left:50px;
}

.promise-content h2{
font-size:62px;
font-family:'Cormorant Garamond',serif;
margin-bottom:25px;
}

.promise-content p{
font-size:17px;
line-height:32px;
color:#555;
margin-bottom:50px;
}

.promise-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}

.promise-item{
display:flex;
gap:20px;
}

.promise-item i{
width:64px;
height:64px;
border-radius:50%;
border:1px solid #dfcfb7;
display:flex;
align-items:center;
justify-content:center;
color:var(--gold);
font-size:24px;
}

.promise-item h4{
font-size:22px;
margin-bottom:10px;
font-weight:600;
}

.promise-item p{
font-size:15px;
line-height:28px;
margin:0;
}

/* FOOTER */
.footer{
background:linear-gradient(90deg,#02120e,#082e23);
padding:90px 0 30px;
}

.footer-logo img{
height:72px;
margin-bottom:26px;
}

.footer-about{
color:#d6d6d6;
font-size:15px;
line-height:30px;
}

.footer h4{
font-size:22px;
font-family:'Cormorant Garamond',serif;
color:#fff;
margin-bottom:28px;
}

.footer-links li{
margin-bottom:16px;
}

.footer-links li a{
color:#d8d8d8;
font-size:15px;
}

.footer-links li a:hover{
color:var(--gold);
padding-left:6px;
}

.footer-contact li{
color:#d6d6d6;
margin-bottom:18px;
font-size:15px;
line-height:28px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.1);
margin-top:60px;
padding-top:26px;
}

.footer-bottom p{
margin:0;
color:#ccc;
font-size:14px;
}

.payment-icons{
text-align:right;
}

.payment-icons img{
height:28px;
}

@media(max-width:991px){

.hero-content{
padding:70px 30px;
}

.hero h1{
font-size:58px;
}

.feature-box{
border-right:none;
border-bottom:1px solid var(--border);
}

.promise-content{
padding-left:0;
padding-top:50px;
}

.main-nav{
display:none;
}

}

/* =========================================
   PREMIUM CATEGORY PAGE DESIGN
========================================= */


/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb-area{
    padding:90px 0 80px;
    background:
    linear-gradient(rgba(4,20,15,.78), rgba(4,20,15,.78)),
    url('../images/breadcrumb-bg.jpg') center/cover no-repeat;
    position:relative;
}

.breadcrumb-content{
    text-align:center;
}

.breadcrumb-content h2{
    font-size:72px;
    line-height:1;
    color:#fff;
    margin-bottom:18px;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
    letter-spacing:-1px;
    text-transform:capitalize;
}

.breadcrumb-content ul{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
}

.breadcrumb-content ul li{
    color:#d7c5aa;
    font-size:15px;
    position:relative;
}

.breadcrumb-content ul li a{
    color:#fff;
}

.breadcrumb-content ul li.active{
    color:var(--lux-gold);
}

/* =========================================
   CATEGORY PAGE WRAPPER
========================================= */

.hiraola-content_wrapper{
    padding:90px 0 110px;
    background:#fff;
}

/* =========================================
   SIDEBAR
========================================= */

.hiraola-sidebar-catagories_area{
    position:sticky;
    top:120px;
}

.hiraola-sidebar_categories{
    background:#fff;
    border:1px solid var(--lux-border);
    padding:35px;
    margin-bottom:30px;
    border-radius:0;
}

.hiraola-categories_title h5,
.category-module_heading h5{
    font-size:26px;
    font-family:'Cormorant Garamond',serif;
    color:var(--lux-text);
    margin-bottom:30px;
    position:relative;
    padding-bottom:14px;
}

.hiraola-categories_title h5::after,
.category-module_heading h5::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:2px;
    background:var(--lux-gold);
}

/* CATEGORY LINKS */

.module-list_item li{
    border-bottom:1px solid #f3ede4;
}

.module-list_item li:last-child{
    border:none;
}

.module-list_item li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 0;
    color:#222;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.module-list_item li a:hover{
    color:var(--lux-gold);
    padding-left:8px;
}

/* PRICE FILTER */

.price-filter{
    padding-top:10px;
}

#slider-range{
    height:6px;
    background:#eee4d7;
    border:none;
    border-radius:30px;
    margin-bottom:28px;
}

.ui-slider-range{
    background:var(--lux-gold)!important;
}

.ui-slider-handle{
    width:18px!important;
    height:18px!important;
    border-radius:50%!important;
    background:var(--lux-gold)!important;
    border:none!important;
    top:-6px!important;
    cursor:pointer;
}

.label-input{
    width:100%;
}

.label-input label{
    display:block;
    margin-bottom:12px;
    font-size:14px;
    color:#777;
    text-transform:uppercase;
    letter-spacing:1px;
}

.label-input input{
    width:100%;
    height:52px;
    border:1px solid var(--lux-border);
    padding:0 20px;
    font-size:15px;
    background:#faf7f2;
}

/* SIDEBAR BANNER */

.sidebar-banner_area{
    overflow:hidden;
}

.sidebar-banner_area img{
    width:100%;
    transition:.5s;
}

.sidebar-banner_area:hover img{
    transform:scale(1.06);
}

/* =========================================
   TOOLBAR
========================================= */

.shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
    padding-bottom:24px;
    border-bottom:1px solid var(--lux-border);
}

.product-view-mode{
    display:flex;
    align-items:center;
    gap:12px;
}

.product-view-mode a{
    width:50px;
    height:50px;
    border:1px solid var(--lux-border);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#222;
    font-size:18px;
    background:#fff;
    transition:.3s;
}

.product-view-mode a.active,
.product-view-mode a:hover{
    background:var(--lux-gold);
    border-color:var(--lux-gold);
    color:#fff;
}

.product-short{
    display:flex;
    align-items:center;
    gap:16px;
}

.select-label{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#555;
    text-transform:uppercase;
    letter-spacing:1px;
}

.product-short select{
    height:52px;
    min-width:240px;
    border:1px solid var(--lux-border);
    padding:0 18px;
    background:#faf7f2;
    font-size:14px;
    color:#222;
}

/* =========================================
   PRODUCT GRID
========================================= */

:root{
    --gold:#caa46b;
    --dark:#071510;
    --text:#1f1f1f;
    --border:#ece4d8;
    --light:#faf7f2;
}

/* HERO */
.category-hero{

    padding:120px 0;

    background:
    linear-gradient(rgba(5,18,14,.75), rgba(5,18,14,.75)),
    url('../images/category-bg.jpg') center/cover;

}

.category-hero-content{
    text-align:center;
}

.category-hero-content span{

    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;

}

.category-hero-content h1{

    font-size:76px;
    color:#fff;
    margin:20px 0;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;

}

.category-hero-content ul{

    display:flex;
    justify-content:center;
    gap:14px;

}

.category-hero-content ul li{
    color:#ddd;
}

.category-hero-content ul li a{
    color:#fff;
}

/* PAGE */
.premium-category-page{
    padding:100px 0;
    background:#fff;
}

/* SIDEBAR */
.premium-sidebar{
    position:sticky;
    top:120px;
}

.sidebar-widget{

    background:#fff;
    border:1px solid var(--border);
    padding:35px;
    margin-bottom:30px;

}

.widget-title h4{

    font-size:34px;
    margin-bottom:30px;
    font-family:'Cormorant Garamond',serif;

}

/* PRICE */
#slider-range{
    height:6px;
    border:none;
    background:#eadfce;
    border-radius:30px;
    margin-bottom:30px;
}

.ui-slider-range{
    background:var(--gold)!important;
}

.ui-slider-handle{

    width:18px!important;
    height:18px!important;
    border-radius:50%!important;
    background:var(--gold)!important;
    border:none!important;
    top:-6px!important;

}

#amount{

    width:100%;
    height:54px;
    border:1px solid var(--border);
    padding:0 18px;
    background:#faf7f2;

}

/* CATEGORY LIST */
.category-list li{
    border-bottom:1px solid #f3ede4;
}

.category-list li:last-child{
    border:none;
}

.category-list li a{

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 0;

    color:#222;
    font-weight:500;
    transition:.3s;

}

.category-list li a:hover,
.category-list li a.active{

    color:var(--gold);
    padding-left:8px;

}

/* OFFER */
.sidebar-offer{
    position:relative;
    overflow:hidden;
}

.sidebar-offer img{
    width:100%;
}

.sidebar-offer-content{

    position:absolute;
    left:30px;
    bottom:30px;

}

.sidebar-offer-content span{

    color:#fff;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;

}

.sidebar-offer-content h4{

    color:#fff;
    font-size:42px;
    margin-top:10px;
    font-family:'Cormorant Garamond',serif;

}

/* TOOLBAR */
.premium-toolbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:40px;
    padding-bottom:24px;

    border-bottom:1px solid var(--border);

}

.toolbar-left h5{

    margin:0;
    font-size:20px;
    font-weight:600;

}

.toolbar-right select{

    width:240px;
    height:54px;
    border:1px solid var(--border);
    padding:0 18px;
    background:#faf7f2;

}

/* PRODUCT CARD */
.premium-product-card{

    background:#faf7f2;
    padding:24px;
    transition:.4s;
    height:100%;

}

.premium-product-card:hover{

    transform:translateY(-10px);
    box-shadow:0 24px 40px rgba(0,0,0,.08);

}

.premium-product-image{

    position:relative;
    overflow:hidden;
    margin-bottom:24px;

}

.premium-product-image img{

    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    transition:.4s;

}

.premium-product-card:hover img{
    transform:scale(1.04);
}

.product-badge{

    position:absolute;
    top:14px;
    left:14px;

    background:var(--gold);
    color:#fff;

    padding:6px 12px;

    font-size:11px;
    font-weight:700;
    letter-spacing:1px;

}

.premium-product-content h4{
    font-size:22px;
    line-height:28px;
    margin-bottom:10px;
    font-family:'Cormorant Garamond',serif;

}

.premium-product-content h4 a{
    color:#111;
}

.product-category{

    font-size:14px;
    color:#777;
    margin-bottom:10px;

}

.product-price{

    font-size:34px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;

}

.product-rating{

    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:10px;

}

.product-actions{
    display:flex;
    gap:12px;
}

.product-actions a{

    width:48px;
    height:48px;

    border-radius:50%;
    border:1px solid #e4d8c8;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;
    background:#fff;

    transition:.3s;

}

.product-actions a:hover{

    background:var(--gold);
    border-color:var(--gold);
    color:#fff;

}

/* MOBILE */
@media(max-width:991px){

    .premium-category-page{
        padding:70px 0;
    }

    .premium-sidebar{
        position:relative;
        top:0;
        margin-bottom:50px;
    }

    .premium-toolbar{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

}

@media(max-width:767px){

    .category-hero{
        padding:90px 0;
    }

    .category-hero-content h1{
        font-size:46px;
    }

    .sidebar-widget{
        padding:24px;
    }

    .premium-product-content h4{
        font-size:20px;
        line-height:30px;
    }

    .product-price{
        font-size:28px;
    }

}

/* =========================================
   IMAGE BACKGROUND MERGE FIX
========================================= */

.premium-product-card{

    background:#f7f3ee;
    overflow:hidden;

}

/* IMAGE AREA */
.premium-product-image{

    background:#f7f3ee;
    padding:20px;
    margin-bottom:22px;

    display:flex;
    align-items:center;
    justify-content:center;

}

/* IMAGE */
.premium-product-image img{

    mix-blend-mode:multiply;
    background:transparent!important;

    filter:
    contrast(1.02)
    brightness(1.01);

}

/* REMOVE EXTRA WHITE FEEL */
.premium-product-card::before{

    display:none!important;

}

/* BETTER PRODUCT HEIGHT */
.premium-product-image{

    height:320px;

}

/* IMAGE FIT */
.premium-product-image img{

    max-height:100%;
    width:auto;
    object-fit:contain;

}

/* MOBILE */
@media(max-width:767px){

    .premium-product-image{
        height:240px;
        padding:16px;
    }

}

/* =========================================
   PREMIUM PRODUCT PAGE
========================================= */

.product-hero{

    padding:110px 0;
    background:
    linear-gradient(rgba(5,18,14,.82), rgba(5,18,14,.82)),
    url('../images/category-bg.jpg') center/cover;

}

.product-hero-content{

    text-align:center;

}

.product-hero-content span{

    color:#caa46b;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;

}

.product-hero-content h1{

    font-size:72px;
    line-height:1.1;
    color:#fff;
    margin:20px 0;

    font-family:'Cormorant Garamond',serif;
    font-weight:600;

}

.product-hero-content ul{

    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;

}

.product-hero-content ul li{

    color:#ddd;

}

.product-hero-content ul li a{

    color:#fff;

}

/* PAGE */

.premium-product-page{

    padding:100px 0;

}

/* IMAGE */

.product-image-box{

    background:#f8f5f0;
    padding:50px;

    display:flex;
    align-items:center;
    justify-content:center;

}

.product-image-box img{

    width:100%;
    max-height:700px;
    object-fit:contain;

    mix-blend-mode:multiply;

}

/* CONTENT */

.product-content-box h2{

    font-size:44px;
    line-height:1.1;

    margin-bottom:24px;

    font-family:'Cormorant Garamond',serif;
    color:#111;
    font-weight:600;

}

.product-category{

    color:#caa46b;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:18px;
    font-weight:600;

}

/* RATING */

.product-rating{

    color:#caa46b;
    margin-bottom:22px;
    font-size:15px;
    letter-spacing:2px;

}

.product-rating span{

    color:#777;
    margin-left:8px;
    letter-spacing:0;

}

/* PRICE */

.product-price{

    font-size:24px;
    font-weight:700;
    margin-bottom:26px;
    color:#111;

}

/* DESC */

.product-short-desc{

    font-size:17px;
    line-height:34px;
    color:#666;
    margin-bottom:40px;

}

/* META */

.product-meta{

    border-top:1px solid #eee;
    border-bottom:1px solid #eee;

    padding:24px 0;
    margin-bottom:34px;

}

.meta-row{

    display:flex;
    justify-content:space-between;
    margin-bottom:14px;

}

.meta-row:last-child{

    margin-bottom:0;

}

.meta-row span{

    color:#777;

}

.meta-row strong{

    color:#111;

}

/* SIZE */

.product-size-box{

    margin-bottom:34px;

}

.product-size-box label{

    display:block;
    margin-bottom:12px;
    font-weight:600;

}

.product-size-box select{

    width:220px;
    height:56px;

    border:1px solid #e5dbcd;
    background:#faf7f2;

    padding:0 18px;

}

/* QTY */

.product-qty-area{

    margin-bottom:40px;

}

.product-qty-area label{

    display:block;
    margin-bottom:14px;
    font-weight:600;

}

.qty-wrapper{

    width:180px;
    height:58px;

    border:1px solid #e5dbcd;

    display:flex;
    align-items:center;

}

.qty-wrapper button{

    width:55px;
    height:100%;

    border:none;
    background:#faf7f2;

    font-size:24px;

}

.qty-wrapper input{

    width:70px;
    border:none;
    text-align:center;
    font-size:18px;
    font-weight:600;

}

/* BUTTONS */

.product-buttons{

    display:flex;
    gap:16px;
    flex-wrap:wrap;

}

.add-cart-btn{

    height:60px;
    padding:0 42px;

    background:#071510;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:600;

    transition:.3s;

}

.add-cart-btn:hover{

    background:#caa46b;
    color:#fff;

}

.icon-btn{

    width:58px;
    height:58px;

    border:1px solid #e5dbcd;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;
    background:#fff;

    transition:.3s;

}

.icon-btn:hover{

    background:#caa46b;
    border-color:#caa46b;
    color:#fff;

}

/* TABS */

.premium-tabs{

    padding-bottom:100px;

}

.premium-nav-tabs{

    justify-content:center;
    border:none;
    gap:16px;

}

.premium-nav-tabs .nav-link{

    height:56px;
    padding:0 34px;

    border:1px solid #e5dbcd;
    background:#fff;

    color:#111;
    font-weight:600;

}

.premium-nav-tabs .nav-link.active{

    background:#071510;
    border-color:#071510;
    color:#fff;

}

.premium-tab-content{

    margin-top:40px;
    border:1px solid #eee;
    padding:50px;

}

/* DESCRIPTION */

.product-description{

    font-size:17px;
    line-height:34px;
    color:#555;

}

/* REVIEW */

.review-form h3{

    margin-bottom:30px;
    font-size:36px;
    font-family:'Cormorant Garamond',serif;

}

.review-input,
.review-textarea{

    width:100%;
    border:1px solid #e5dbcd;
    background:#faf7f2;

    padding:16px 20px;

}

.review-input{

    height:56px;

}

.review-textarea{

    height:180px;

}

.review-btn{

    height:56px;
    padding:0 34px;

    border:none;
    background:#071510;
    color:#fff;

    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;

}

/* MOBILE */

@media(max-width:991px){

    .product-content-box h2{

        font-size:46px;

    }

    .product-price{

        font-size:42px;

    }

}

@media(max-width:767px){

    .product-hero{

        padding:80px 0;

    }

    .product-hero-content h1{

        font-size:40px;

    }

    .premium-product-page{

        padding:70px 0;

    }

    .product-image-box{

        padding:20px;

    }

    .product-content-box h2{

        font-size:36px;

    }

    .product-price{

        font-size:36px;

    }

    .premium-tab-content{

        padding:24px;

    }

}


.about-content-section{
    background:#f8f8f8;
}

.premium-content-wrapper{
    background:#ffffff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.content-block h2{
    font-size:38px;
    line-height:1.3;
    color:#111111;
}

.content-block p{
    font-size:18px;
    line-height:1.9;
    color:#666666;
}

.highlight-box{
    background:#faf7f2;
    border:1px solid #eee4d6;
}

.highlight-box h5{
    font-size:20px;
    color:#111111;
}

.highlight-box p{
    font-size:16px;
    line-height:1.8;
}

.highlight-box i{
    color:#c9a46c;
}

.letter-spacing-2{
    letter-spacing:2px;
}

@media(max-width:991px){

    .premium-content-wrapper{
        padding:35px;
    }

    .content-block h2{
        font-size:30px;
    }

    .content-block p{
        font-size:16px;
    }

}

@media(max-width:767px){

    .premium-content-wrapper{
        padding:25px;
        border-radius:20px;
    }

    .content-block h2{
        font-size:26px;
    }

}


/* =========================================
   PREMIUM CART PAGE DESIGN
========================================= */

.hiraola-cart-area {
    padding: 80px 0;
    background: #f7f7f5;
}

/* TABLE AREA */

.table-content {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.table-content table {
    margin: 0;
    vertical-align: middle;
}

.table-content thead {
    background: #f5f5f3;
}

.table-content thead th {
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 15px;
}

.table-content tbody tr {
    border-bottom: 1px solid #ececec;
    transition: 0.3s ease;
}

.table-content tbody tr:hover {
    background: #fafafa;
}

.table-content tbody td {
    padding: 25px 15px;
    vertical-align: middle;
    border: none;
}

/* PRODUCT IMAGE */

.hiraola-product-thumbnail img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 16px;
    background: #f8f8f8;
    padding: 10px;
    transition: 0.4s ease;
}

.hiraola-product-thumbnail img:hover {
    transform: scale(1.05);
}

/* PRODUCT NAME */

.hiraola-product-name a {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
    text-decoration: none;
    transition: 0.3s ease;
}

.hiraola-product-name a:hover {
    color: #b78d65;
}

/* PRICE */

.amount {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* REMOVE BUTTON */

.hiraola-product-remove a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: 0.3s ease;
    text-decoration: none;
}

.hiraola-product-remove a:hover {
    background: #111;
    color: #fff;
    transform: rotate(8deg);
}

/* QUANTITY */

.quantity label {
    display: none;
}

.cart-plus-minus-box {
    width: 110px;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    outline: none;
    transition: 0.3s ease;
}

.cart-plus-minus-box:focus {
    border-color: #b78d65;
    box-shadow: 0 0 0 4px rgba(183,141,101,0.12);
}

/* CART TOTAL CARD */

.cart-page-total {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: sticky;
    top: 30px;
}

.cart-page-total h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #111;
    font-weight: 500;
}

.cart-page-total ul {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.cart-page-total ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    color: #111;
}

.cart-page-total ul li span {
    font-weight: 700;
}

/* CHECKOUT BUTTON */

.cart-page-total a {
    width: 100%;
    height: 58px;
    background: linear-gradient(135deg, #c7a27c, #a67c52);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(166,124,82,0.25);
}

.cart-page-total a:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(166,124,82,0.35);
}

/* COUPON AREA */

.coupon-all {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.coupon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.coupon .input-text {
    height: 52px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 18px;
    min-width: 240px;
    outline: none;
    transition: 0.3s ease;
}

.coupon .input-text:focus {
    border-color: #b78d65;
    box-shadow: 0 0 0 4px rgba(183,141,101,0.1);
}

.button {
    height: 52px;
    padding: 0 28px;
    border: none;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.button:hover {
    background: #b78d65;
}

/* BREADCRUMB */

.breadcrumb-area {
    padding: 100px 0;
    background: linear-gradient(135deg, #26302d, #374540);
    position: relative;
    overflow: hidden;
}

.breadcrumb-content h2 {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -1px;
}

.breadcrumb-content ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-content ul li,
.breadcrumb-content ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
}

.breadcrumb-content ul .active {
    color: #d6aa74;
}

/* MOBILE */

@media(max-width:991px){

    .cart-page-total {
        margin-top: 30px;
    }

    .table-content {
        overflow-x: auto;
    }

    .breadcrumb-content h2 {
        font-size: 42px;
    }

}

@media(max-width:767px){

    .coupon-all {
        flex-direction: column;
    }

    .coupon {
        width: 100%;
    }

    .coupon .input-text {
        width: 100%;
        min-width: 100%;
    }

    .button {
        width: 100%;
    }

}

/* =========================================
   PREMIUM CHECKOUT PAGE
========================================= */

.checkout-area {
    padding: 80px 0;
    background: #f7f7f5;
}

/* LEFT FORM CARD */

.checkbox-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* HEADINGS */

.checkbox-form h3,
.your-order h3 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #111;
    letter-spacing: -1px;
}

/* FORM GROUP */

.checkout-form-list,
.country-select,
.myniceselect {
    margin-bottom: 24px;
}

/* LABELS */

.checkout-form-list label,
.country-select label,
.myniceselect label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
    letter-spacing: 0.3px;
}

/* INPUTS */

.checkout-form-list input,
.checkout-form-list textarea,
.country-select select,
.myniceselect select {
    width: 100%;
    height: 56px;
    border: 1px solid #dfdfdf;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 15px;
    color: #111;
    background: #fff;
    transition: 0.3s ease;
    box-shadow: none;
    outline: none;
}

/* TEXTAREA */

.checkout-form-list textarea {
    height: 160px;
    padding-top: 18px;
    resize: none;
}

/* FOCUS EFFECT */

.checkout-form-list input:focus,
.checkout-form-list textarea:focus,
.country-select select:focus,
.myniceselect select:focus {
    border-color: #b88b5a;
    box-shadow: 0 0 0 4px rgba(184,139,90,0.12);
}

/* PLACEHOLDER */

.checkout-form-list input::placeholder,
.checkout-form-list textarea::placeholder {
    color: #9a9a9a;
}

/* REQUIRED STAR */

.required {
    color: #b88b5a;
}

/* SHIPPING TITLE */

.ship-different-title {
    margin-top: 25px;
    margin-bottom: 25px;
}

.ship-different-title h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    margin-bottom: 0;
}

.ship-different-title input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #b88b5a;
}

/* ORDER NOTES */

.order-notes {
    margin-top: 20px;
}

/* RIGHT ORDER CARD */

.your-order {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: sticky;
    top: 30px;
}

/* ORDER TABLE */

.your-order-table table {
    margin: 0;
}

.your-order-table thead {
    background: #f8f8f8;
}

.your-order-table thead th {
    border: none;
    padding: 18px 20px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
    font-weight: 600;
}

.your-order-table tbody td,
.your-order-table tfoot th,
.your-order-table tfoot td {
    border-top: 1px solid #ececec;
    padding: 20px;
    font-size: 16px;
    color: #111;
    vertical-align: middle;
}

/* PRODUCT NAME */

.cart-product-name {
    font-weight: 500;
}

/* PRODUCT QTY */

.product-quantity {
    color: #b88b5a;
    font-weight: 700;
}

/* TOTALS */

.order-total th,
.order-total td {
    font-size: 20px !important;
    font-weight: 700;
}

/* PRICE */

.amount {
    font-weight: 700;
    color: #111;
}

/* PLACE ORDER BUTTON */

.order-button-payment {
    margin-top: 35px;
}

.order-button-payment input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #c69b6d, #a87948);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.4s ease;
    box-shadow: 0 12px 30px rgba(168,121,72,0.28);
}

.order-button-payment input:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(168,121,72,0.35);
}

/* ERROR STYLE */

.error {
    color: #d62828;
    font-size: 13px;
    margin-top: 7px;
    display: block;
}

/* BREADCRUMB */

.breadcrumb-area {
    padding: 110px 0;
    background: linear-gradient(135deg, #26302d, #394741);
    position: relative;
    overflow: hidden;
}

.breadcrumb-content h2 {
    font-size: 70px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.breadcrumb-content ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-content ul li,
.breadcrumb-content ul li a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    text-decoration: none;
}

.breadcrumb-content ul .active {
    color: #d4a26a;
}

/* ROW GAP */

.checkout-area .row {
    row-gap: 30px;
}

/* MOBILE */

@media(max-width:991px){

    .your-order {
        position: relative;
        top: auto;
    }

    .checkbox-form,
    .your-order {
        padding: 30px;
    }

    .checkbox-form h3,
    .your-order h3 {
        font-size: 34px;
    }

    .breadcrumb-content h2 {
        font-size: 44px;
    }

}

@media(max-width:767px){

    .checkbox-form,
    .your-order {
        padding: 22px;
        border-radius: 18px;
    }

    .checkout-form-list input,
    .checkout-form-list textarea,
    .country-select select,
    .myniceselect select {
        height: 52px;
    }

    .checkbox-form h3,
    .your-order h3 {
        font-size: 28px;
    }

    .ship-different-title h3 {
        font-size: 22px;
    }

}



.policy-page{
    max-width:1000px;
    margin:auto;
    padding:80px 20px;
}

.policy-header{
    margin-bottom:70px;
}

.policy-subtitle{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#9b7b53;
    font-weight:600;
    margin-bottom:15px;
}

.policy-header h1{
    font-size:54px;
    font-weight:700;
    color:#111111;
    margin-bottom:20px;
}

.policy-divider{
    width:80px;
    height:2px;
    background:#c7a06a;
    margin:0 auto 25px;
}

.policy-header p{
    font-size:18px;
    line-height:1.8;
    color:#666666;
    max-width:700px;
    margin:auto;
}

.policy-content{
    background:#ffffff;
    border-radius:28px;
    padding:60px;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
    border:1px solid #f1f1f1;
}

.policy-block{
    margin-bottom:50px;
    padding-bottom:40px;
    border-bottom:1px solid #efefef;
}

.policy-block:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.policy-block h2{
    font-size:32px;
    font-weight:700;
    color:#111111;
    margin-bottom:25px;
}

.policy-block p{
    font-size:17px;
    line-height:1.9;
    color:#666666;
    margin-bottom:20px;
}

.contact-block{
    text-align:center;
}

.contact-box{
    background:#faf7f2;
    border:1px solid #eadfce;
    padding:30px;
    border-radius:20px;
    margin-top:30px;
}

.contact-box span{
    display:block;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#9b7b53;
    margin-bottom:12px;
    font-weight:600;
}

.contact-box a{
    font-size:24px;
    font-weight:600;
    color:#111111;
    text-decoration:none;
    transition:0.3s ease;
}

.contact-box a:hover{
    color:#c7a06a;
}

@media(max-width:991px){

    .policy-content{
        padding:40px;
    }

    .policy-header h1{
        font-size:42px;
    }

    .policy-block h2{
        font-size:28px;
    }

}

@media(max-width:767px){

    .policy-page{
        padding:60px 15px;
    }

    .policy-content{
        padding:28px;
        border-radius:20px;
    }

    .policy-header{
        margin-bottom:45px;
    }

    .policy-header h1{
        font-size:34px;
    }

    .policy-block{
        margin-bottom:35px;
        padding-bottom:30px;
    }

    .policy-block h2{
        font-size:24px;
    }

    .policy-block p{
        font-size:16px;
        line-height:1.8;
    }

    .contact-box a{
        font-size:18px;
        word-break:break-word;
    }

}


.policy-list{
    list-style:none;
    padding:0;
    margin:35px 0 0;
    display:grid;
    gap:18px;
}

.policy-list li{
    position:relative;
    padding:18px 22px 18px 58px;
    background:#faf7f2;
    border:1px solid #eadfce;
    border-radius:18px;
    font-size:17px;
    line-height:1.7;
    color:#444444;
    transition:0.3s ease;
}

.policy-list li::before{
    content:"✦";
    position:absolute;
    left:22px;
    top:50%;
    transform:translateY(-50%);
    width:24px;
    height:24px;
    border-radius:50%;
    background:#c7a06a;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.policy-list li:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    border-color:#d7b588;
}

@media(max-width:767px){

    .policy-list li{
        padding:16px 18px 16px 52px;
        font-size:16px;
        border-radius:14px;
    }

    .policy-list li::before{
        left:18px;
    }

}

/* =========================
   PREMIUM MEGA MENU STYLE
========================= */

.main-nav {
    position: relative;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 22px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    transition: 0.3s ease;
}

.main-nav > ul > li > a:hover {
    color: #0d6b63;
}


/* =========================
   MEGA MENU
========================= */

.hm-megamenu {
    position: absolute;
    left: 67%;
    top: 100%;
    transform: translateX(-50%);
    width: 300px;
    background: #ffffff;
    padding: 40px 45px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    align-items: start;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 999;
        flex-direction: column;
      gap: 0px !important;
}



/* SHOW ON HOVER */

.megamenu-holder:hover .hm-megamenu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 12px); align-items:start;
    padding: 20px;
}


/* =========================
   COLUMN
========================= */

.hm-megamenu > li {
    list-style: none;
    min-width: 0;
    width: 100%;
}


/* CATEGORY TITLE */

.megamenu-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* PRODUCT LINKS */

.hm-megamenu ul {
    margin: 0; align-items:start;
    padding: 0;
    list-style: none; display:flex; flex-direction:column; gap:10px;
}

.hm-megamenu ul li {
    margin-bottom: 10px;
}

.hm-megamenu ul li a {
    display: block;
    color: #555;
    font-size: 14px; padding:0;
    line-height: 1.5; text-transform:none; font-weight:400;
    text-decoration: none;

    white-space: normal;
    word-break: break-word;

    transition: all 0.3s ease;
}


/* HOVER EFFECT */

.hm-megamenu ul li a:hover {
    color: #0d6b63;
    padding-left: 6px;
}


/* VIEW ALL */

.hm-megamenu ul li:last-child {
    margin-top: 14px;
}

.hm-megamenu ul li:last-child a {
    color: #0d6b63;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}


/* =========================
   SCROLL IF TOO MANY ITEMS
========================= */

.hm-megamenu {
    max-height: 75vh;
    overflow-y: auto;
}


/* CUSTOM SCROLLBAR */

.hm-megamenu::-webkit-scrollbar {
    width: 6px;
}

.hm-megamenu::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 20px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .hm-megamenu {
        width: 1000px;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) {

    .hm-megamenu {
        width: 90vw;
        grid-template-columns: repeat(3, 1fr);
        padding: 30px;
    }
}

@media (max-width: 767px) {

    .hm-megamenu {
        position: static;
        transform: none;
        width: 100%;
        display: block;
        padding: 20px;
        box-shadow: none;
        border-radius: 0;
    }

    .hm-megamenu > li {
        margin-bottom: 25px;
    }
}


/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle {
    width: 46px;
    height: 46px;
    border: none;
    background: #0d6b63;
    border-radius: 10px;

    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    cursor: pointer;
    transition: 0.3s ease;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 20px;
    transition: 0.3s ease;
}


/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 991px) {

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;

        background: #ffffff;

        z-index: 9999;

        overflow-y: auto;

        transition: 0.4s ease;

        padding: 80px 25px 40px;
        box-shadow: 10px 0 40px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav > ul {
        display: block;
    }

    .main-nav > ul > li {
        width: 100%;
        margin-bottom: 18px;
    }

    .main-nav > ul > li > a {
        padding: 0;
        display: block;

        font-size: 15px;
        font-weight: 600;

        color: #111;
    }

    /* MEGA MENU MOBILE */

    .hm-megamenu {
        position: static;
        transform: none;

        width: 100%;
        max-height: initial;

        display: none;

        opacity: 1;
        visibility: visible;

        padding: 18px 0 0;
        margin-top: 15px;

        grid-template-columns: 1fr;

        background: transparent;

        box-shadow: none;
        border-radius: 0;
    }

    .megamenu-holder.active .hm-megamenu {
        display: grid;
    }

    .hm-megamenu > li {
        margin-bottom: 25px;
    }

    .megamenu-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .hm-megamenu ul li a {
        font-size: 13px;
        line-height: 1.6;
    }

    /* BACKDROP */

    .menu-overlay {
        position: fixed;
        inset: 0;

        background: rgba(0,0,0,0.45);

        z-index: 9998;

        opacity: 0;
        visibility: hidden;

        transition: 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* =========================================
   PREMIUM CONTACT PAGE
========================================= */
 
.contact-main-page {
    padding: 80px 0;
    background: #f7f7f5;
}
 
/* FORM CARD */
 
.contact-form-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
 
.contact-form-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #c89d70, #a87746);
}
 
/* SIDEBAR CARD */
 
.contact-page-side-content {
    background: linear-gradient(135deg, #26302d, #394741);
    padding: 35px;
    border-radius: 28px;
    height: 100%;
    color: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
 
/* TITLES */
 
.contact-page-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 35px;
    letter-spacing: -1px;
    line-height: 1.2;
}
 
.contact-form-content .contact-page-title {
    color: #111;
}
 
.contact-page-side-content .contact-page-title {
    color: #fff;
}
 
/* CONTACT BLOCKS */
 
.single-contact-block {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
 
 
/* CONTACT BLOCK TITLE */
 
.single-contact-block h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
 
/* ICONS */
 
.single-contact-block h4 i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a26a;
    font-size: 16px;
}
 
/* TEXT */
 
.single-contact-block p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
    margin-bottom: 0;
}
 
/* FORM GROUP */
 
.form-group {
    margin-bottom: 24px;
}
 
/* LABELS */
 
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
    letter-spacing: 0.3px;
}
 
/* REQUIRED */
 
.required {
    color: #c89d70;
}
 
/* INPUTS */
 
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dfdfdf;
    border-radius: 14px;
    background: #fff;
    padding: 0 18px;
    font-size: 15px;
    color: #111;
    transition: 0.3s ease;
    outline: none;
    box-shadow: none;
}
 
/* INPUT HEIGHT */
 
.contact-form input {
    height: 45px;
}
 
/* TEXTAREA */
 
.contact-form textarea {
    height: 80px;
    resize: none;
    padding-top: 18px;
}
 
/* FOCUS */
 
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c89d70;
    box-shadow: 0 0 0 4px rgba(200,157,112,0.12);
}
 
/* PLACEHOLDER */
 
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9d9d9d;
}
 
/* BUTTON */
 
.hiraola-contact-form_btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #c89d70, #a87746);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s ease;
    box-shadow: 0 12px 30px rgba(168,119,70,0.28);
}
 
.hiraola-contact-form_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(168,119,70,0.35);
}
 
/* SUCCESS & ERROR MESSAGE */
 
.form-message {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 500;
}
 
.text-success {
    color: #1d7c45 !important;
}
 
.text-danger {
    color: #d62828 !important;
}
 
/* VALIDATION ERROR */
 
label.error {
    color: #d62828;
    font-size: 13px;
    margin-top: 7px;
    display: block;
}
 
/* BREADCRUMB */
 
.breadcrumb-area {
    padding: 110px 0;
    background: linear-gradient(135deg, #26302d, #394741);
    position: relative;
    overflow: hidden;
}
 
.breadcrumb-content h2 {
    font-size: 72px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
 
.breadcrumb-content ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.breadcrumb-content ul li,
.breadcrumb-content ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
}
 
.breadcrumb-content ul .active {
    color: #d5a36c;
}
 
/* MOBILE */
 
@media(max-width:991px){
 
    .contact-page-side-content {
        margin-bottom: 30px;
    }
 
    .contact-form-content,
    .contact-page-side-content {
        padding: 40px;
    }
 
    .breadcrumb-content h2 {
        font-size: 48px;
    }
 
}
 
@media(max-width:767px){
 
    .contact-form-content,
    .contact-page-side-content {
        padding: 28px;
        border-radius: 20px;
    }
 
    .contact-page-title {
        font-size: 32px;
    }
 
    .breadcrumb-content h2 {
        font-size: 38px;
    }
 
    .contact-form input {
        height: 54px;
    }
 
    .contact-form textarea {
        height: 160px;
    }
 
}

.footer-bottom p a {
    color: #ccc !important;
}
.footer-about a {
    color: #ccc;
}

select#currency {
    background: transparent;
    padding: 5px 5px;
    border-radius: 5px;
    font-size: 18px;
    color: #ffffff;
    border: none;
}
select#currency option{
    color:#000;
}
.category-card h4 {
    color: #000;
}

.contact-page-side-content {
    background: linear-gradient(135deg, #13211d, #2d3f37);
    padding: 35px;
    border-radius: 24px;
    color: #fff;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-page-side-content::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}

.contact-page-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
}

.single-contact-block {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px 20px 10px;
    border-radius: 18px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.single-contact-block h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
}

.single-contact-block h4 i {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.single-contact-block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 20px;
    margin-left: 10px;
}

.contact-page-side-content > div:last-child {
    margin-top: 20px;
}

.contact-page-side-content > div:last-child h4 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
    font-family: "Cormorant Garamond", serif;
}

.contact-page-side-content > div:last-child p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
}

.contact-page-side-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-page-side-content ul li {
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
    transition: 0.3s ease;
}

.contact-page-side-content ul li:hover {
    transform: translateX(8px);
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
}
.footer-contact li {
    word-wrap: break-word;
}

span.megamenu-holder-arrow {
    position: absolute;
    right: -12px;
    top: 20px;
}



@media (max-width: 991px) {
    .contact-page-side-content {
        padding: 35px 25px;
        margin-top: 30px;
    }

    .contact-page-title {
        font-size: 32px;
    }

    .contact-page-side-content > div:last-child h4 {
        font-size: 26px;
    }
}


@media only screen and (max-width: 768px){
    button.mobile-toggle {
    order: 3;
}
.header-icons {
    order: 2;
}
    .hero-content {
        padding: 0px 30px;
    }
    .hero-row {

    min-height: auto;
}
.hero h1 {
        font-size: 32px;
    }
    .hero-sub {
    font-size: 16px;

}
.hero p {
    font-size: 14px;
    line-height: 24px;
    color: #ddd;
    /* max-width: 520px; */
    margin-bottom: 25px;
}
.hero-image {
    height: 390px;
    position: relative;
}
.feature-box {
    height: 100px;
}
.products {
    padding: 40px 0;
    background: #fff;
}
.section-title {
    text-align: center;
    margin-bottom: 20px;
}
.banner-content {
    left: 5%;
}
.banner-content h3 {
    font-size: 42px;
}
.banner-box img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.collection-banner {
    padding-bottom: 40px;
}
.categories {
    padding-bottom: 40px;
}
.mini-banner img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.mini-banners {
    padding-bottom: 40px;
}
.promise {
    padding: 40px 0;
    background: #faf7f2;
}
    .promise-content {
        padding-left: 0;
        padding-top: 0px;
    }
    .promise-content h2 {
    font-size: 32px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 10px;
}
.promise-item p {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}
    .contact-page-side-content {
        margin-top: 0px;
    }
    .contact-page-side-content ul li {
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 18px;
    margin-bottom: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    transition: 0.3s ease;
}
.footer-about {
    color: #d6d6d6;
    font-size: 14px;
    line-height: 22px;
}
.footer {
    background: linear-gradient(90deg, #02120e, #082e23);
    padding: 40px 0 30px;
}
    nav.main-nav.active {
        display: block;
        top: 184px;
        width: 100%;
        padding: 20px;
    }
.hm-megamenu {
        display: none;
    }
    
    nav.main-nav ul li {
    padding: 20px 0;
    border-bottom: 1px solid #cccc;
    margin: 0;
}
span.megamenu-holder-arrow {
    position: absolute;
    right: 0px;
    top: 3px;
    width: 55px;
    height: 55px;
    background: #0d6b63;
    line-height: 55px;
    text-align: center;
    color: #fff;
}
.megamenu-title {
        font-size: 14px;
        margin-bottom: 0px;
        border-bottom: 0;
        padding: 0;
        margin: 0;
    }
    ul.hm-megamenu {
    display: none;
}
.promise-content p {
    font-size: 14px;
    line-height: 24px;
    color: #555;
    margin-bottom: 30px;
}
.promise-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dfcfb7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    flex: 0 0 40px;
}

}

@media only screen and (max-width: 600px) {
    .header-icons a:nth-child(1) {
    display: none;
}
.header-icons a:nth-child(2) {
    display: none;
}
.logo img {
    height: 55px;
}
    .hero-content {
        padding: 20px 20px;
    }
    .category-hero {
        padding: 40px 0;
    }
        .premium-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 0px;
    }
    
    .hero-row {

    min-height: auto;
}
.hero-image {
    height: 0;
    position: relative;
}
.hero-sub {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}
.hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 14px;
        line-height: 24px;
        color: #ddd;
        max-width: 520px;
        margin-bottom: 17px;
    }
    .banner-content {
        position: absolute;
        left: 0%;
        padding: 15px;
    }
.banner-content h3 {
    font-size: 42px;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    margin: 14px 0 16px;
}
.banner-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.banner-content h3 {
    font-size: 32px;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    margin: 14px 0 16px;
}
.banner-box img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.section-title h2 {
    font-size: 38px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0;
}
.categories .col {
    flex: 1 0 100%;
}
.categories {
    padding-bottom: 40px;
}
.mini-banner-content {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.promise {
    padding: 40px 0;
    background: #faf7f2;
}
.promise-image img {
    height: 289px;
    width: 100%;
    object-fit: cover;
}
.promise-content h2 {
    font-size: 38px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 25px;
}
.promise-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
}
.highlight-box {
    background: #faf7f2;
    border: 1px solid #eee4d6;
    padding: 20px !important;
}
.mini-banners {
    padding-bottom: 35px;
}
select#currency {
    font-size: 15px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 0px;
    padding-top: 16px;
}
.col-lg-6.payment-icons {
    text-align: center;
    display: flex;
    justify-content: center;
}
.footer-bottom p {
    text-align: center;
    margin-bottom: 10px;
}
}