/* ==========================================================
   LUXORA FASHION
   Main Stylesheet
   PHP 7.3
========================================================== */

/* ==========================================================
   Google Font
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================
   CSS Variables
========================================================== */

:root{

    --primary:#111111;
    --secondary:#c9a96e;

    --white:#ffffff;

    --black:#000000;

    --gray:#777777;

    --light:#f8f8f8;

    --border:#ececec;

    --danger:#dc3545;

    --success:#198754;

    --radius:8px;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --transition:.35s ease;

    --container:1320px;

}

/* ==========================================================
   Reset
========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    font-size:15px;

    color:var(--primary);

    background:#fff;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    background:none;

}

input,
textarea,
select{

    outline:none;

    border:none;

    font-family:inherit;

}

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Playfair Display',serif;

    font-weight:700;

    line-height:1.3;

}

.container{

    width:100%;

    max-width:var(--container);

    margin:auto;

    padding:0 15px;

}

/* ==========================================================
   Common
========================================================== */

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:55px;

}

.section-title span{

    color:var(--secondary);

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    margin-top:10px;

    font-size:42px;

}

.section-title p{

    max-width:600px;

    margin:20px auto 0;

    color:var(--gray);

}

/* ==========================================================
   Buttons
========================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 30px;

    border-radius:30px;

    transition:var(--transition);

}

.btn-dark{

    background:var(--primary);

    color:#fff;

}

.btn-dark:hover{

    background:var(--secondary);

}

.btn-outline{

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

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================================================
   Badge
========================================================== */

.badge{

    position:absolute;

    left:15px;

    top:15px;

    background:var(--secondary);

    color:#fff;

    font-size:12px;

    padding:4px 10px;

    border-radius:20px;

    z-index:5;

}

.badge-hot{

    background:#dc3545;

}

.badge-new{

    background:#198754;

}

.badge-sale{

    background:#111;
}

/* ==========================================================
   Utility
========================================================== */

.text-center{

    text-align:center;

}

.mt-30{

    margin-top:30px;

}

.mb-30{

    margin-bottom:30px;

}

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-between{

    justify-content:space-between;

}

/* ==========================================================
   HEADER
========================================================== */

.header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:#fff;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

/* ==========================================================
   TOP BAR
========================================================== */

.header-top{

    background:#111;

    color:#fff;

    font-size:13px;

}

.header-top .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:42px;

}

.header-top-left{

    display:flex;

    gap:20px;

}

.header-top-right{

    display:flex;

    gap:20px;

}

.header-top a:hover{

    color:var(--secondary);

}

/* ==========================================================
   HEADER MAIN
========================================================== */

.header-main{

    background:#fff;

}

.header-main .container{

    height:90px;

    display:grid;

    grid-template-columns:220px 1fr 260px;

    align-items:center;

    gap:30px;

}

/* ==========================================================
   LOGO
========================================================== */

.logo{

    font-size:34px;

    font-family:'Playfair Display',serif;

    font-weight:700;

    letter-spacing:1px;

}

.logo span{

    color:var(--secondary);

}

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

.menu{

    display:flex;

    justify-content:center;

}

.menu ul{

    display:flex;

    align-items:center;

    gap:35px;

}

.menu li{

    position:relative;

}

.menu a{

    display:block;

    padding:10px 0;

    font-size:15px;

    font-weight:500;

}

.menu a:hover,

.menu a.active{

    color:var(--secondary);

}

/* underline */

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.35s;

}

.menu a:hover::after,

.menu a.active::after{

    width:100%;

}

/* ==========================================================
   DROPDOWN
========================================================== */

.menu li ul{

    position:absolute;

    top:120%;

    left:0;

    width:230px;

    background:#fff;

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

    box-shadow:var(--shadow);

    display:none;

    flex-direction:column;

    gap:0;

    z-index:999;

}

.menu li:hover>ul{

    display:flex;

}

.menu li ul a{

    padding:12px 18px;

}

.menu li ul a:hover{

    background:#fafafa;

}

/* ==========================================================
   HEADER ACTION
========================================================== */

.header-action{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:18px;

}

.action-item{

    position:relative;

    font-size:23px;

    cursor:pointer;

    transition:.3s;

}

.action-item:hover{

    color:var(--secondary);

}

.action-count{

    position:absolute;

    top:-6px;

    right:-8px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#dc3545;

    color:#fff;

    font-size:11px;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* ==========================================================
   SEARCH
========================================================== */

.search-box{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.search-box.active{

    display:flex;

}

.search-form{

    width:700px;

    max-width:95%;

    background:#fff;

    padding:20px;

    border-radius:8px;

    display:flex;

}

.search-form input{

    flex:1;

    height:54px;

    padding:0 20px;

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

}

.search-form button{

    width:60px;

    background:#111;

    color:#fff;

}

.search-form button:hover{

    background:var(--secondary);

}

/* ==========================================================
   MOBILE BUTTON
========================================================== */

.mobile-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* ==========================================================
   MOBILE MENU
========================================================== */

.mobile-menu{

    position:fixed;

    left:-320px;

    top:0;

    width:300px;

    height:100vh;

    background:#fff;

    transition:.35s;

    z-index:9999;

    overflow:auto;

    box-shadow:var(--shadow);

}

.mobile-menu.active{

    left:0;

}

.mobile-menu-header{

    height:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 20px;

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

}

.mobile-menu ul{

    padding:20px;

}

.mobile-menu li{

    border-bottom:1px solid #f3f3f3;

}

.mobile-menu a{

    display:block;

    padding:14px 0;

}

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    display:none;

    z-index:9998;

}

.mobile-overlay.active{

    display:block;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    overflow:hidden;

    background:#f8f8f8;

}

.hero-item{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

}

.hero-item img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.25);

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:600px;

    color:#fff;

}

.hero-subtitle{

    display:inline-block;

    margin-bottom:20px;

    color:var(--secondary);

    font-size:15px;

    letter-spacing:3px;

    text-transform:uppercase;

}

.hero-title{

    font-size:66px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-desc{

    font-size:17px;

    line-height:1.9;

    margin-bottom:40px;

    color:rgba(255,255,255,.92);

}

.hero-btn{

    min-width:180px;

}

/* slider dots */

.hero-dots{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:20;

}

.hero-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#fff;

    opacity:.5;

    cursor:pointer;

}

.hero-dot.active{

    opacity:1;

    background:var(--secondary);

}

/* ==========================================================
   CATEGORY
========================================================== */

.home-category{

    background:#fff;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:30px;

}

.category-item{

    text-align:center;

    padding:35px 20px;

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

    transition:.35s;

    border-radius:var(--radius);

    background:#fff;

}

.category-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.category-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fafafa;

    margin-bottom:25px;

    transition:.35s;

}

.category-item:hover .category-icon{

    background:var(--secondary);

    color:#fff;

}

.category-icon i{

    font-size:38px;

}

.category-name{

    font-size:18px;

    margin-bottom:10px;

    font-family:'Playfair Display',serif;

}

.category-total{

    color:var(--gray);

    font-size:14px;

}

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

.home-product{

    background:#fafafa;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* ==========================================================
   PRODUCT CARD
========================================================== */

.product-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:10px;

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

/* ==========================================================
   IMAGE
========================================================== */

.product-image{

    position:relative;

    overflow:hidden;

    background:#f7f7f7;

    aspect-ratio:4/5;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

/* ảnh hover */

.product-image img:last-child{

    position:absolute;

    inset:0;

    opacity:0;

}

.product-card:hover .product-image img:first-child{

    opacity:0;

}

.product-card:hover .product-image img:last-child{

    opacity:1;

}

/* zoom */

.product-card:hover .product-image img{

    transform:scale(1.06);

}

/* ==========================================================
   ACTION
========================================================== */

.product-action{

    position:absolute;

    top:15px;

    right:-60px;

    display:flex;

    flex-direction:column;

    gap:10px;

    transition:.35s;

    z-index:10;

}

.product-card:hover .product-action{

    right:15px;

}

.product-action a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    transition:.35s;

}

.product-action a:hover{

    background:var(--secondary);

    color:#fff;

}

/* ==========================================================
   BADGE
========================================================== */

.product-badge{

    position:absolute;

    left:15px;

    top:15px;

    display:flex;

    flex-direction:column;

    gap:8px;

    z-index:20;

}

.product-badge span{

    padding:5px 12px;

    border-radius:20px;

    color:#fff;

    font-size:11px;

    letter-spacing:1px;

    font-weight:600;

}

.badge-new{

    background:#198754;

}

.badge-hot{

    background:#dc3545;

}

.badge-sale{

    background:#111;

}

/* ==========================================================
   INFO
========================================================== */

.product-info{

    padding:25px;

}

.product-category{

    color:var(--gray);

    font-size:13px;

    margin-bottom:8px;

}

.product-name{

    font-size:20px;

    margin-bottom:15px;

    line-height:1.5;

    min-height:60px;

}

.product-name a:hover{

    color:var(--secondary);

}

/* ==========================================================
   STAR
========================================================== */

.product-star{

    display:flex;

    gap:3px;

    margin-bottom:15px;

    color:#f5b301;

    font-size:14px;

}

/* ==========================================================
   PRICE
========================================================== */

.product-price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;

}

.price{

    font-size:20px;

    font-weight:600;

}

.old-price{

    color:#999;

    text-decoration:line-through;

    font-size:15px;

}

/* ==========================================================
   FOOTER
========================================================== */

.product-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.product-cart{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#111;

    color:#fff;

    transition:.35s;

}

.product-cart:hover{

    background:var(--secondary);

}

.product-sold{

    font-size:13px;

    color:#777;

}

/* ==========================================================
   PRODUCT HOVER
========================================================== */

.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid transparent;

    transition:.35s;

    pointer-events:none;

}

.product-card:hover::before{

    border-color:var(--secondary);

}

/* ==========================================================
   COLLECTION
========================================================== */

.home-collection{

    background:#ffffff;

}

.collection-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

/* ==========================================================
   COLLECTION CARD
========================================================== */

.collection-card{

    position:relative;

    overflow:hidden;

    border-radius:12px;

    cursor:pointer;

    min-height:420px;

    background:#f5f5f5;

}

.collection-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.collection-card:hover img{

    transform:scale(1.08);

}

/* ==========================================================
   Overlay
========================================================== */

.collection-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15)
    );

}

/* ==========================================================
   Content
========================================================== */

.collection-content{

    position:absolute;

    left:40px;

    bottom:40px;

    z-index:20;

    color:#fff;

}

.collection-subtitle{

    display:inline-block;

    margin-bottom:15px;

    color:var(--secondary);

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:2px;

}

.collection-title{

    font-size:42px;

    margin-bottom:20px;

}

.collection-desc{

    max-width:420px;

    margin-bottom:25px;

    color:rgba(255,255,255,.88);

}

.collection-btn{

    min-width:180px;

}

/* ==========================================================
   COLLECTION
========================================================== */

.home-collection{

    background:#ffffff;

}

.collection-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

/* ==========================================================
   COLLECTION CARD
========================================================== */

.collection-card{

    position:relative;

    overflow:hidden;

    border-radius:12px;

    cursor:pointer;

    min-height:420px;

    background:#f5f5f5;

}

.collection-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.collection-card:hover img{

    transform:scale(1.08);

}

/* ==========================================================
   Overlay
========================================================== */

.collection-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15)
    );

}

/* ==========================================================
   Content
========================================================== */

.collection-content{

    position:absolute;

    left:40px;

    bottom:40px;

    z-index:20;

    color:#fff;

}

.collection-subtitle{

    display:inline-block;

    margin-bottom:15px;

    color:var(--secondary);

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:2px;

}

.collection-title{

    font-size:42px;

    margin-bottom:20px;

}

.collection-desc{

    max-width:420px;

    margin-bottom:25px;

    color:rgba(255,255,255,.88);

}

.collection-btn{

    min-width:180px;

}

/* ==========================================================
   PROMOTION
========================================================== */

.home-banner{

    padding:40px 0;

}

.promo-banner{

    position:relative;

    overflow:hidden;

    border-radius:15px;

}

.promo-banner img{

    width:100%;

    display:block;

    transition:.45s;

}

.promo-banner:hover img{

    transform:scale(1.05);

}

.promo-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.30);

}

.promo-content{

    position:absolute;

    top:50%;

    left:70px;

    transform:translateY(-50%);

    color:#fff;

}

.promo-content h2{

    font-size:52px;

    margin-bottom:15px;

}

.promo-content p{

    font-size:18px;

    margin-bottom:30px;

    max-width:520px;

}

/* ==========================================================
   PRODUCT TAB
========================================================== */

.product-tabs{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:45px;

}

.product-tab{

    height:45px;

    padding:0 28px;

    border-radius:30px;

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

    background:#fff;

    transition:.35s;

    cursor:pointer;

}

.product-tab.active,

.product-tab:hover{

    background:var(--secondary);

    color:#fff;

    border-color:var(--secondary);

}

/* ==========================================================
   ANIMATION
========================================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

}

.fade-up.show{

    opacity:1;

    transform:none;

    transition:.8s;

}

/* ==========================================================
   NEWS
========================================================== */

.home-news{

    background:#fafafa;

}

.news-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.news-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    transition:.35s;

}

.news-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.news-image{

    overflow:hidden;

    aspect-ratio:16/10;

}

.news-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.news-card:hover .news-image img{

    transform:scale(1.08);

}

.news-body{

    padding:28px;

}

.news-meta{

    display:flex;

    gap:20px;

    color:#888;

    font-size:13px;

    margin-bottom:15px;

}

.news-title{

    font-size:24px;

    line-height:1.45;

    margin-bottom:18px;

}

.news-title a:hover{

    color:var(--secondary);

}

.news-desc{

    color:#777;

    margin-bottom:22px;

}

.news-more{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:600;

}

.news-more:hover{

    color:var(--secondary);

}

/* ==========================================================
   NEWSLETTER
========================================================== */

.newsletter{

    background:#111;

    color:#fff;

}

.newsletter-box{

    max-width:760px;

    margin:auto;

    text-align:center;

}

.newsletter h2{

    font-size:42px;

    margin-bottom:18px;

}

.newsletter p{

    color:#ddd;

    margin-bottom:35px;

}

.newsletter-form{

    display:flex;

    gap:15px;

}

.newsletter-form input{

    flex:1;

    height:56px;

    border-radius:35px;

    padding:0 25px;

}

.newsletter-form button{

    min-width:170px;

    border-radius:35px;

    background:var(--secondary);

    color:#fff;

}

.newsletter-form button:hover{

    background:#fff;

    color:#111;

}

/* ==========================================================
   INSTAGRAM
========================================================== */

.instagram{

    padding:70px 0;

}

.instagram-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:18px;

}

.instagram-item{

    overflow:hidden;

    border-radius:8px;

    position:relative;

}

.instagram-item img{

    width:100%;

    transition:.45s;

}

.instagram-item:hover img{

    transform:scale(1.08);

}

.instagram-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.28);

    opacity:0;

    transition:.35s;

}

.instagram-item:hover::after{

    opacity:1;

}

/* ==========================================================
   FOOTER
========================================================== */

/*==========================
FOOTER
==========================*/

.footer{

padding-top:90px;

border-top:1px solid #eee;

background:#fff;

}

.footer-top{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:60px;

padding-bottom:70px;

}

.footer-logo{

font-family:'Playfair Display';

font-size:42px;

font-weight:600;

margin-bottom:20px;

}

.footer-col p{

color:#666;

line-height:1.9;

font-size:15px;

}

.footer-col h4{

font-size:15px;

letter-spacing:2px;

margin-bottom:24px;

}

.footer-col ul{

margin:0;

padding:0;

list-style:none;

}

.footer-col li{

margin-bottom:14px;

}

.footer-col a{

text-decoration:none;

color:#555;

transition:.3s;

}

.footer-col a:hover{

color:#b88a63;

}

.footer-newsletter{

display:flex;

margin-top:20px;

}

.footer-newsletter input{

flex:1;

height:48px;

padding:0 16px;

border:1px solid #ddd;

outline:none;

}

.footer-newsletter button{

width:120px;

border:none;

background:#111;

color:#fff;

cursor:pointer;

transition:.3s;

}

.footer-newsletter button:hover{

background:#b88a63;

}

.footer-bottom{

border-top:1px solid #eee;

padding:28px 0;

display:flex;

justify-content:space-between;

align-items:center;

font-size:14px;

color:#777;

}

.footer-social{

display:flex;

gap:20px;

}

.footer-social a{

color:#111;

font-size:20px;

transition:.3s;

}

.footer-social a:hover{

color:#b88a63;

}
/* ==========================================================
   1200
========================================================== */

@media(max-width:1200px){

.container{

    max-width:960px;

}

.product-grid{

    grid-template-columns:repeat(3,1fr);

}

.category-grid{

    grid-template-columns:repeat(3,1fr);

}

.instagram-grid{

    grid-template-columns:repeat(4,1fr);

}

}

/* ==========================================================
   992
========================================================== */

@media(max-width:992px){

.menu{

    display:none;

}

.mobile-toggle{

    display:block;

}

.header-main .container{

    grid-template-columns:180px 1fr 180px;

}

.collection-grid{

    grid-template-columns:1fr;

}

.news-grid{

    grid-template-columns:1fr 1fr;

}

.footer-grid{

    grid-template-columns:1fr 1fr;

}

}

/* ==========================================================
   768
========================================================== */

@media(max-width:768px){

.hero-title{

    font-size:46px;

}

.product-grid{

    grid-template-columns:repeat(2,1fr);

}

.news-grid{

    grid-template-columns:1fr;

}

.category-grid{

    grid-template-columns:repeat(2,1fr);

}

.instagram-grid{

    grid-template-columns:repeat(3,1fr);

}

.newsletter-form{

    flex-direction:column;

}

.footer-bottom .container{

    flex-direction:column;

    gap:20px;

}

}

/* ==========================================================
   576
========================================================== */

@media(max-width:576px){

.header-main .container{

    grid-template-columns:1fr auto auto;

}

.product-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:32px;

}

.product-card{

background:#fff;

}

.product-thumb{

position:relative;

overflow:hidden;

background:#f6f6f6;

}

.product-thumb img{

width:100%;

height:420px;

object-fit:cover;

transition:.6s;

display:block;

}

.product-card:hover img{

transform:scale(1.05);

}

.product-sale{

position:absolute;

left:16px;

top:16px;

background:#111;

color:#fff;

padding:6px 12px;

font-size:12px;

letter-spacing:1px;

z-index:2;

}

.product-action{

position:absolute;

right:18px;

top:20px;

display:flex;

flex-direction:column;

gap:12px;

opacity:0;

transform:translateX(20px);

transition:.35s;

}

.product-card:hover .product-action{

opacity:1;

transform:none;

}

.product-action a{

width:42px;

height:42px;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#111;

text-decoration:none;

box-shadow:0 4px 12px rgba(0,0,0,.08);

transition:.3s;

}

.product-action a:hover{

background:#b88a63;

color:#fff;

}

.product-info{

padding:22px 4px 10px;

text-align:center;

}

.product-category{

font-size:12px;

letter-spacing:2px;

color:#999;

text-transform:uppercase;

margin-bottom:10px;

}

.product-info h3{

margin:0 0 14px;

font-size:18px;

font-family:'Playfair Display',serif;

font-weight:500;

}

.product-info h3 a{

color:#111;

text-decoration:none;

}

.product-price{

display:flex;

justify-content:center;

gap:12px;

align-items:center;

}

.new-price{

font-weight:600;

font-size:18px;

color:#111;

}

.old-price{

color:#999;

text-decoration:line-through;

font-size:15px;

}

.category-grid{

    grid-template-columns:1fr;

}

.instagram-grid{

    grid-template-columns:repeat(2,1fr);

}

.hero-item{

    min-height:520px;

}

.hero-title{

    font-size:36px;

}

.section-title h2{

    font-size:32px;

}

}

.collection-content{

    transition:.4s;

}

.collection-card:hover .collection-content{

    transform:translateY(-8px);

}

.collection-card::before{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid transparent;

    transition:.35s;

    z-index:5;

}

.collection-card:hover::before{

    border-color:rgba(255,255,255,.45);

}



/*=========================
TOPBAR
=========================*/

.topbar{

height:36px;

border-bottom:1px solid #eee;

background:#fff;

}

.topbar-list{

display:flex;

justify-content:center;

align-items:center;

gap:70px;

height:36px;

font-size:13px;

color:#666;

}

.topbar-list i{

margin-right:8px;

}

/*=========================
HEADER
=========================*/

.header{

height:88px;

background:#fff;

border-bottom:1px solid #efefef;

position:sticky;

top:0;

z-index:999;

}

.header-wrap{

height:88px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

text-decoration:none;

color:#111;

}

.logo span{

display:block;

font-size:42px;

font-family:'Playfair Display';

font-weight:700;

letter-spacing:2px;

line-height:40px;

}

.logo small{

display:block;

letter-spacing:6px;

font-size:12px;

text-align:center;

margin-top:2px;

color:#888;

}

.main-menu ul{

display:flex;

gap:45px;

list-style:none;

margin:0;

padding:0;

}

.main-menu a{

text-decoration:none;

font-size:14px;

font-weight:600;

color:#111;

text-transform:uppercase;

position:relative;

padding:34px 0;

}

.main-menu li.active a::after{

content:"";

position:absolute;

left:0;

right:0;

bottom:22px;

height:2px;

background:#111;

}

.main-menu a:hover{

color:#b88a63;

}

.header-right{

display:flex;

gap:24px;

align-items:center;

}

.header-right a{

font-size:24px;

color:#111;

position:relative;

transition:.3s;

}

.header-right a:hover{

color:#b88a63;

}

.cart-icon span{

position:absolute;

right:-8px;

top:-6px;

width:18px;

height:18px;

background:#111;

color:#fff;

font-size:11px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}

/*============================
HERO
============================*/

.hero{

position:relative;

height:560px;

overflow:hidden;

background:#f8f5f2;

}

.hero-slide{

position:absolute;

inset:0;

opacity:0;

visibility:hidden;

transition:.6s;

}

.hero-slide.active{

opacity:1;

visibility:visible;

}

.hero-bg{

position:absolute;

inset:0;

background-size:cover;



}

.hero::before{

content:"";

position:absolute;

left:0;

top:0;

bottom:0;

width:58%;



z-index:2;

}

.hero-inner{

position:relative;

z-index:5;

height:560px;

display:flex;

align-items:center;

}

.hero-left{

max-width:540px;

}

.hero-label{

font-size:14px;

letter-spacing:3px;

text-transform:uppercase;

color:#555;

display:block;

margin-bottom:18px;

}

.hero h1{

font-family:'Playfair Display',serif;

font-size:78px;

line-height:1.02;

font-weight:500;

margin-bottom:22px;

color:#111;

}

.hero h1 strong{

color:#b88a63;

}

.hero p{

font-size:17px;

line-height:1.9;

color:#666;

max-width:500px;

margin-bottom:34px;

}

.hero-btns{

display:flex;

gap:18px;

}

.btn-dark{

background:#111;

color:#fff;

padding:15px 36px;

text-decoration:none;

font-size:14px;

letter-spacing:1px;

transition:.3s;

}

.btn-dark:hover{

background:#b88a63;

color:#fff;

}

.btn-light{

padding:14px 34px;

border:1px solid #111;

text-decoration:none;

color:#111;

transition:.3s;

}

.btn-light:hover{

background:#111;

color:#fff;

}

.hero-dots{

position:absolute;

bottom:28px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:10px;

z-index:20;

}

.hero-dots span{

width:11px;

height:11px;

border-radius:50%;

background:#d7d7d7;

cursor:pointer;

transition:.3s;

}

.hero-dots .active{

background:#111;

}

/*==================================
SERVICES
==================================*/

.services{

padding:45px 0;

background:#fff;

border-bottom:1px solid #efefef;

}

.services-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

}

.service-item{

display:flex;

align-items:center;

gap:18px;

padding:20px 28px;

border-right:1px solid #efefef;

transition:.35s;

}

.service-item:last-child{

border-right:none;

}

.service-item:hover{

background:#fafafa;

}

.service-icon{

width:52px;

height:52px;

display:flex;

align-items:center;

justify-content:center;

border:1px solid #e7e7e7;

border-radius:50%;

font-size:22px;

color:#b88a63;

transition:.35s;

}

.service-item:hover .service-icon{

background:#b88a63;

color:#fff;

border-color:#b88a63;

}

.service-content h4{

margin:0 0 6px;

font-size:15px;

font-weight:600;

color:#111;

}

.service-content p{

margin:0;

font-size:13px;

color:#777;

line-height:1.6;

}

/*==================================
FEATURED CATEGORY
==================================*/

.featured-category{

padding:90px 0;

}

.section-heading{

text-align:center;

margin-bottom:55px;

}

.section-heading span{

display:block;

font-size:13px;

letter-spacing:3px;

text-transform:uppercase;

color:#888;

margin-bottom:10px;

}

.section-heading h2{

font-family:'Playfair Display',serif;

font-size:42px;

font-weight:600;

color:#111;

margin:0;

}

.featured-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.featured-item{

position:relative;

overflow:hidden;

height:460px;

display:block;

text-decoration:none;

}

.featured-item img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.featured-overlay{

position:absolute;

inset:0;

background:linear-gradient(
180deg,
rgba(0,0,0,0),
rgba(0,0,0,.55)
);

transition:.35s;

}

.featured-content{

position:absolute;

left:35px;

bottom:35px;

color:#fff;

z-index:2;

}

.featured-content h3{

font-family:'Playfair Display';

font-size:34px;

margin-bottom:12px;

}

.featured-content span{

font-size:14px;

letter-spacing:1px;

}

.featured-item:hover img{

transform:scale(1.08);

}

.featured-item:hover .featured-overlay{

background:linear-gradient(
180deg,
rgba(0,0,0,.15),
rgba(0,0,0,.72)
);

}

.product-section{

padding:95px 0;

}

.bg-light{

background:#faf8f5;

}

/*==================================
FULL BANNER
==================================*/

.home-full-banner{

padding:90px 0;

background:#fff;

}

.full-banner{

position:relative;

display:block;

overflow:hidden;

height:460px;

text-decoration:none;

}

.full-banner img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

display:block;

}

.full-banner:hover img{

transform:scale(1.05);

}

.full-banner::after{

content:"";

position:absolute;

inset:0;

background:rgba(0,0,0,.28);

transition:.35s;

}

.full-banner:hover::after{

background:rgba(0,0,0,.38);

}

.banner-content{

position:absolute;

left:80px;

top:50%;

transform:translateY(-50%);

z-index:5;

color:#fff;

max-width:420px;

}

.banner-content span{

display:block;

font-size:13px;

letter-spacing:4px;

margin-bottom:18px;

text-transform:uppercase;

}

.banner-content h2{

font-family:'Playfair Display';

font-size:56px;

font-weight:500;

margin-bottom:20px;

}

.banner-content p{

font-size:16px;

line-height:1.8;

margin-bottom:30px;

}

.banner-link{

display:inline-block;

padding-bottom:5px;

border-bottom:2px solid #fff;

letter-spacing:1px;

font-size:14px;

}

.section-heading{

margin-bottom:60px;

text-align:center;

}

.section-heading span{

display:block;

font-size:12px;

letter-spacing:4px;

color:#999;

margin-bottom:12px;

text-transform:uppercase;

}

.section-heading h2{

font-family:'Playfair Display';

font-size:44px;

font-weight:500;

margin-bottom:14px;

}

.section-heading p{

max-width:520px;

margin:auto;

color:#777;

font-size:15px;

line-height:1.8;

}

/*==========================
NEWS
==========================*/

.news-section{

padding:95px 0;

background:#fff;

}

.news-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.news-card{

background:#fff;

}

.news-thumb{

display:block;

overflow:hidden;

}

.news-thumb img{

width:100%;

height:300px;

object-fit:cover;

display:block;

transition:.6s;

}

.news-card:hover img{

transform:scale(1.05);

}

.news-info{

padding-top:22px;

}

.news-date{

font-size:12px;

letter-spacing:2px;

color:#999;

margin-bottom:12px;

text-transform:uppercase;

}

.news-info h3{

font-family:'Playfair Display';

font-size:28px;

font-weight:500;

line-height:1.35;

margin-bottom:15px;

}

.news-info h3 a{

color:#111;

text-decoration:none;

}

.news-info p{

color:#666;

line-height:1.8;

margin-bottom:20px;

}

.read-more{

text-decoration:none;

color:#111;

font-weight:600;

letter-spacing:1px;

font-size:13px;

}

.read-more:hover{

color:#b88a63;

}

/*==========================
INSTAGRAM
==========================*/

.instagram-section{

padding:90px 0;

background:#faf8f5;

}

.instagram-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:18px;

}

.instagram-item{

position:relative;

overflow:hidden;

display:block;

aspect-ratio:1/1;

}

.instagram-item img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

display:block;

}

.instagram-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.35);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

transition:.35s;

}

.instagram-overlay i{

font-size:34px;

color:#fff;

}

.instagram-item:hover img{

transform:scale(1.08);

}

.instagram-item:hover .instagram-overlay{

opacity:1;

}


.shop-layout{

display:grid;

grid-template-columns:280px 1fr;

gap:45px;

}

.page-banner{

padding:80px 0;

background:#faf8f5;

text-align:center;

}

.page-banner h1{

font-family:'Playfair Display';

font-size:48px;

margin-bottom:15px;

}

.shop-page{

padding:80px 0;

}


/*==========================
PRODUCT DETAIL
==========================*/

.breadcrumb-section{

padding:25px 0;

background:#fafafa;

font-size:14px;

}

.breadcrumb-section a{

text-decoration:none;

color:#666;

}

.breadcrumb-section span{

margin:0 10px;

color:#bbb;

}

.breadcrumb-section strong{

font-weight:600;

color:#111;

}

.product-detail-page{

padding:70px 0;

}

.product-detail-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:flex-start;

}

.product-tabs-section{

padding:80px 0;

border-top:1px solid #eee;

}

.related-section{

padding:90px 0;

background:#faf8f5;

}

/*============================
PRODUCT GALLERY
============================*/

.product-gallery{

display:grid;

grid-template-columns:90px 1fr;

gap:20px;

}

.gallery-thumb{

display:flex;

flex-direction:column;

gap:15px;

}

.gallery-thumb img{

width:90px;

height:110px;

object-fit:cover;

cursor:pointer;

border:1px solid #eee;

transition:.3s;

}

.gallery-thumb img:hover{

border-color:#111;

}

.gallery-thumb img.active{

border:2px solid #111;

}

.gallery-main{

overflow:hidden;

background:#f8f8f8;

}

.gallery-main img{

width:100%;

display:block;

transition:.4s;

}

.gallery-main:hover img{

transform:scale(1.03);

}

/*==========================
PRODUCT INFO
==========================*/

.product-info h1{

font-family:'Playfair Display';

font-size:42px;

font-weight:600;

margin-bottom:15px;

}

.product-category{

font-size:13px;

letter-spacing:2px;

color:#999;

margin-bottom:12px;

text-transform:uppercase;

}

.product-rating{

margin-bottom:22px;

font-size:16px;

color:#d4a017;

}

.product-rating span{

color:#777;

margin-left:10px;

font-size:14px;

}

.product-price-box{

margin-bottom:28px;

}

.product-price-box .price{

font-size:34px;

font-weight:700;

margin-right:15px;

}

.product-price-box .old-price{

text-decoration:line-through;

color:#999;

}

.product-short-desc{

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.qty-box{

display:flex;

width:150px;

border:1px solid #ddd;

margin-top:10px;

}

.qty-box button{

width:45px;

height:45px;

border:none;

background:#fff;

cursor:pointer;

font-size:20px;

}

.qty-box input{

flex:1;

border:none;

text-align:center;

font-size:16px;

}

.product-action{

display:flex;

gap:15px;

margin:35px 0;

}

.product-meta{

padding-top:25px;

border-top:1px solid #eee;

}

.product-meta p{

margin-bottom:12px;

color:#666;

}

/*==========================
PRODUCT TAB
==========================*/

.product-tabs{

max-width:1100px;

margin:auto;

}

.tab-header{

display:flex;

justify-content:center;

border-bottom:1px solid #eee;

margin-bottom:40px;

}

.tab-btn{

background:none;

border:none;

padding:18px 35px;

cursor:pointer;

font-size:15px;

letter-spacing:1px;

transition:.3s;

}

.tab-btn.active{

border-bottom:2px solid #111;

font-weight:600;

}

.tab-content{

display:none;

line-height:1.9;

color:#666;

font-size:15px;

}

.tab-content.active{

display:block;

}

.product-table{

width:100%;

border-collapse:collapse;

}

.product-table th{

width:180px;

padding:16px;

background:#fafafa;

text-align:left;

}

.product-table td{

padding:16px;

border-bottom:1px solid #eee;

}

/*==========================
CART
==========================*/

.cart-page{

padding:90px 0;

}

.cart-layout{

display:grid;

grid-template-columns:2fr 380px;

gap:40px;

align-items:flex-start;

}

.cart-empty{

text-align:center;

padding:120px 0;

}

.cart-empty h2{

font-family:'Playfair Display';

font-size:42px;

margin-bottom:20px;

}

.cart-empty p{

color:#777;

margin-bottom:35px;

}


.cart-remove{

color:#999;

font-size:20px;

transition:.3s;

}

.cart-remove:hover{

color:#d33;

}

.cart-table table{

width:100%;

border-collapse:collapse;

}

.cart-table th{

padding:18px;

background:#fafafa;

border-bottom:1px solid #eee;

font-weight:600;

}

.cart-table td{

padding:20px;

border-bottom:1px solid #eee;

vertical-align:middle;

}

.cart-thumb{

width:90px;

height:110px;

object-fit:cover;

}

.cart-product-name{

text-decoration:none;

font-weight:600;

color:#222;

}

.cart-form{

display:flex;

flex-direction:column;

gap:10px;

align-items:center;

}

.qty-control{

display:flex;

align-items:center;

border:1px solid #ddd;

}

.qty-control button{

width:36px;

height:36px;

border:none;

background:#fff;

cursor:pointer;

font-size:18px;

}

.qty-control input{

width:55px;

height:36px;

border:none;

text-align:center;

}

.btn-update{

padding:8px 16px;

border:none;

background:#222;

color:#fff;

cursor:pointer;

font-size:13px;

transition:.3s;

}

.btn-update:hover{

background:#000;

}

/*==========================
CART SUMMARY
==========================*/

.cart-summary{

padding:30px;

border:1px solid #eee;

background:#fafafa;

position:sticky;

top:30px;

}

.cart-summary h3{

margin-bottom:25px;

font-size:22px;

font-family:'Playfair Display';

}

.cart-summary table{

width:100%;

border-collapse:collapse;

margin-bottom:25px;

}

.cart-summary td,

.cart-summary th{

padding:15px 0;

border-bottom:1px solid #e5e5e5;

}

.cart-total th{

font-size:20px;

}

.btn-checkout{

width:100%;

padding:16px;

background:#111;

color:#fff;

border:none;

cursor:pointer;

font-size:16px;

transition:.3s;

}

.btn-checkout:hover{

background:#000;

}

.continue-shopping{

display:block;

margin-top:20px;

text-align:center;

text-decoration:none;

color:#666;

}

.continue-shopping:hover{

color:#111;

}