/* ==========================================================
   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;

}

.product-thumb{
	padding-left:12%;
	padding-right:12%;
	
	
}
	
.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-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-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){
.product-thumb{
	padding-left:10%;
	padding-right:10%;
	
	
}
.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
========================================================== */



.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:right;

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:10px;

padding:10px 18px;

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(4,1fr);

gap:30px;

}

.featured-item{

position:relative;

overflow:hidden;

height:340px;

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:20% 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-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-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;

}

.order-success{

padding:80px 0;

background:#f7f7f7;

}

.success-box{

max-width:650px;

margin:auto;

background:#fff;

padding:50px;

text-align:center;

border-radius:8px;

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

}

.success-icon{

width:90px;

height:90px;

border-radius:50%;

background:#111;

color:#fff;

margin:auto;

line-height:90px;

font-size:42px;

margin-bottom:25px;

}

.order-code{

font-size:22px;

margin:30px 0;

}

.bank-table{

width:100%;

margin:30px 0;

border-collapse:collapse;

}

.bank-table td{

padding:14px;

border-bottom:1px solid #eee;

text-align:left;

}

.note{

margin:30px 0;

color:#666;

}

.btn-shop{

display:inline-block;

padding:14px 40px;

background:#111;

color:#fff;

text-decoration:none;

}

.buy-popup{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

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

display:none;

justify-content:center;

align-items:center;

z-index:99999;

}

.buy-popup.active{

display:flex;

}

.buy-popup-box{

width:520px;

background:#fff;

padding:35px;

position:relative;

border-radius:8px;

}

.popup-close{

position:absolute;

right:20px;

top:15px;

font-size:30px;

cursor:pointer;

}

.form-group{

margin-bottom:18px;

}

.form-group input,

.form-group textarea{

width:100%;

padding:12px;

border:1px solid #ddd;

}

.btn-submit{

width:100%;

height:52px;

background:#111;

color:#fff;

border:none;

cursor:pointer;

}
.order-status{

margin:15px 0;

font-size:15px;

}

.bank-qr{

margin:30px 0;

text-align:center;

}

.bank-qr img{

max-width:220px;

border:1px solid #eee;

padding:10px;

background:#fff;

}

.success-action{

display:flex;

justify-content:center;

gap:15px;

margin-top:30px;

flex-wrap:wrap;

}

.btn-home{

display:inline-block;

padding:14px 30px;

background:#222;

color:#fff;

text-decoration:none;

transition:.3s;

}

.btn-home:hover{

background:#000;

}

.order-status{

margin:20px 0;

font-size:16px;

}

.success-action{

display:flex;

justify-content:center;

gap:15px;

margin-top:30px;

flex-wrap:wrap;

}

.btn-home{

display:inline-block;

padding:14px 30px;

background:#111;

color:#fff;

text-decoration:none;

transition:.3s;

}

.btn-home:hover{

background:#000;

}

@media (max-width:768px){

.header-menu{

display:none;

}

.mobile-menu-btn{

display:flex;

}

}

@media (max-width:768px){

.header{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px;

}

.logo img{

max-width:170px;

height:auto;

}

}


@media (max-width:768px){

.hero{

height:auto;

padding:60px 20px;

}

.hero-content{

width:100%;

}

.hero h1{

font-size:42px;

line-height:1.1;

}

.hero p{

font-size:15px;

}

}

.hero{

background-position:right center;

background-size:cover;

}

@media (max-width:768px){

.hero-btn{

display:flex;

flex-direction:column;

gap:15px;

}

.hero-btn a{

width:100%;

text-align:center;

}

}

@media(max-width:768px){

.topbar{

display:none;

}

}

.mobile-toggle{

display:none;

font-size:32px;

cursor:pointer;

}

.mobile-menu{

position:fixed;

left:-300px;

top:0;

width:280px;

height:100%;

background:#fff;

padding:35px 25px;

transition:.35s;

z-index:9999;

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

}

.mobile-menu.active{

left:0;

}

.mobile-menu a{

display:block;

padding:18px 0;

text-decoration:none;

color:#222;

font-size:16px;

border-bottom:1px solid #eee;

}

.mobile-close{

font-size:28px;

margin-bottom:25px;

cursor:pointer;

}

.mobile-overlay{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

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

opacity:0;

visibility:hidden;

transition:.35s;

z-index:9998;

}

.mobile-overlay.active{

opacity:1;

visibility:visible;

}

@media(max-width:768px){

.topbar{

display:none;

}

.main-menu{

display:none;

}

.header-right{

display:none!important;

}

.mobile-toggle{

display:block;

}

.header-wrap{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 0;

}

.logo span{

font-size:28px;

}

.logo small{

font-size:11px;

}

}

@media (max-width:768px){

.topbar{
display:none;
}

.header{
height:auto;
}

.header-wrap{
height:auto;
padding:15px 0;
display:flex;
align-items:center;
justify-content:space-between;
}

.main-menu{
display:none;
}

.header-right{
display:none !important;
}

.mobile-toggle{
display:block;
font-size:34px;
cursor:pointer;
}

.logo span{
font-size:30px;
line-height:30px;
}

.logo small{
font-size:10px;
letter-spacing:4px;
}

}

.products-banner{
    padding:80px 0 50px;
    text-align:center;
}

.products-banner h1{
    font-size:42px;
    margin-bottom:15px;
}

.breadcrumb{
    font-size:15px;
    color:#777;
}

.breadcrumb a{
    color:#777;
    text-decoration:none;
}

.breadcrumb a:hover{
    color:#000;
}

@media(max-width:768px){
	
    .products-banner{
        padding:50px 0 35px;
    }

    .products-banner h1{
        font-size:30px;
    }

    .breadcrumb{
        font-size:14px;
    }


}

.sidebar-category h3{
    font-size:18px;
    margin-bottom:20px;
}

.sidebar-category ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-category li{
    margin-bottom:12px;
}

.sidebar-category a{
    color:#333;
    text-decoration:none;
}

.sidebar-category a:hover{
    color:#999;
}

@media(max-width:768px){

    .shop-layout{
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .products-sidebar{
        order:1;
    }

    .products-content{
        order:2;
    }

}

.product-action{
    width:50%;
    
    gap:15px;
    margin-top:40px;
}

.product-tabs{
    margin-top:90px;
    width:100%;
}

.tab-header{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:50px;
    border-bottom:1px solid #eee;
}

.tab-item{
    padding:0 0 18px;
    cursor:pointer;
    font-size:15px;
    letter-spacing:1px;
    white-space:nowrap;
    border-bottom:2px solid transparent;
}

.tab-item.active{
    border-bottom-color:#111;
    font-weight:600;
}

#tabContent{
    width:100%;
    padding-top:30px;
    line-height:1.8;
    color:#666;
}

#tabContent p{
    margin:0;
}

/* ================================
   COMMENT FORM
================================ */

.comment-form{

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

}

.comment-form h3{

    margin:0 0 25px;
    font-size:22px;
    font-weight:600;
    color:#222;

}

.comment-form-group{

    margin-bottom:20px;

}

.comment-form-group label{

    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
    color:#222;

}

.comment-form-group input,
.comment-form-group textarea{

    display:block;
    width:100%;
    box-sizing:border-box;

    padding:13px 15px;

    border:1px solid #ddd;
    border-radius:0;

    background:#fff;

    font-family:inherit;
    font-size:14px;
    color:#222;

    outline:none;

    transition:border-color .2s;

}

.comment-form-group input{

    height:48px;

}

.comment-form-group textarea{

    min-height:130px;
    resize:vertical;

}

.comment-form-group input:focus,
.comment-form-group textarea:focus{

    border-color:#111;

}

.comment-form-group input::placeholder,
.comment-form-group textarea::placeholder{

    color:#aaa;

}


/* ================================
   SUBMIT BUTTON
================================ */

.comment-submit{

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

    min-width:180px;
    height:48px;

    padding:0 25px;

    border:1px solid #111;
    background:#111;
    color:#fff;

    font-family:inherit;
    font-size:14px;
    font-weight:500;

    cursor:pointer;

    transition:.25s;

}

.comment-submit:hover{

    background:#333;
    border-color:#333;

}

.comment-submit:disabled{

    opacity:.6;
    cursor:not-allowed;

}


/* ================================
   COMMENT LIST
================================ */

.comment-list{

    width:100%;

}

.comment-item{

    padding:25px 0;

    border-bottom:1px solid #eee;

}

.comment-item:first-child{

    padding-top:0;

}

.comment-name{

    margin-bottom:5px;

    font-size:15px;
    font-weight:600;
    color:#222;

}

.comment-date{

    margin-bottom:12px;

    font-size:12px;
    color:#999;

}

.comment-content{

    font-size:14px;
    line-height:1.8;
    color:#555;

}

.no-comment{

    padding:20px 0;

    font-size:14px;
    color:#999;

}


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

@media(max-width:600px){

    .comment-form{

        margin-top:35px;
        padding-top:25px;

    }

    .comment-form h3{

        font-size:20px;
        margin-bottom:20px;

    }

    .comment-form-group{

        margin-bottom:16px;

    }

    .comment-form-group input{

        height:46px;

    }

    .comment-form-group textarea{

        min-height:110px;

    }

    .comment-submit{

        width:100%;
        min-width:0;
        height:48px;

    }

    .comment-item{

        padding:20px 0;

    }

}

@media screen and (max-width: 1200px) {
    .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 70px;
}
}

@media screen and (max-width: 992px) {
    .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 70px;
	}
}

@media screen and (max-width: 768px) {
	.featured-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
	.services-grid{

display:grid;

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

}
    .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    
    padding-bottom: 50px;
	}
	
	.footer-col{
		display: none;
		
	}
	.footer-col:nth-of-type(1) {
        display: block;
    }
}

.related-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.related-item img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.related-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.related-price {
    font-weight: bold;
    font-size: 18px;
}

/* =========================================
   PAGINATION
========================================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 55px;
    margin-bottom: 20px;
}

.pagination a {
    width: 42px;
    height: 42px;

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

    box-sizing: border-box;

    border: 1px solid #e5e5e5;

    background: #fff;
    color: #222;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

/* Hover */

.pagination a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Trang hiện tại */

.pagination a.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Nút trước / sau */

.pagination .pagination-prev,
.pagination .pagination-next {
    font-size: 20px;
    font-weight: 300;
}

/* Disabled nếu sau này dùng */

.pagination .disabled {
    color: #bbb;
    border-color: #eee;
    background: #fafafa;
    pointer-events: none;
}

/* Dấu ... */

.pagination-dots {
    width: 42px;
    height: 42px;

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

    color: #888;
    font-size: 14px;
}


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

@media (max-width: 600px) {

    .pagination {
        gap: 5px;
        margin-top: 40px;
    }

    .pagination a,
    .pagination-dots {
        width: 38px;
        height: 38px;
    }

    .pagination .pagination-prev,
    .pagination .pagination-next {
        font-size: 18px;
    }

}

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

.shop-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.shop-sidebar h3 {
    margin: 0 0 20px;
    padding-bottom: 14px;

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

    color: #111;

    border-bottom: 1px solid #e5e5e5;
}


/* =========================================
   CATEGORY + PRICE
========================================= */

.sidebar-category,
.sidebar-price {
    margin-bottom: 45px;
}

.sidebar-category ul,
.sidebar-price ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category li,
.sidebar-price li {
    margin: 0;
}


/* =========================================
   LINK
========================================= */

.sidebar-category a,
.sidebar-price a {
    display: flex;
    align-items: center;

    min-height: 38px;

    padding: 5px 0;

    color: #666;

    font-size: 14px;
    font-weight: 400;

    text-decoration: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


/* Hover */

.sidebar-category a:hover,
.sidebar-price a:hover {
    color: #111;
    padding-left: 5px;
}


/* =========================================
   ACTIVE
========================================= */

.sidebar-category a.active,
.sidebar-price a.active {
    color: #111;
    font-weight: 600;
}


/* =========================================
   ALL PRODUCTS
========================================= */

.sidebar-category li:first-child a,
.sidebar-price li:first-child a {
    color: #111;
    font-weight: 500;
}


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

@media (max-width: 768px) {

    .shop-sidebar {
        width: 100%;
    }

    .sidebar-category,
    .sidebar-price {
        margin-bottom: 30px;
    }

    .sidebar-category h3,
    .sidebar-price h3 {
        margin-bottom: 12px;
    }

    .sidebar-category ul,
    .sidebar-price ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .sidebar-category li,
    .sidebar-price li {
        margin: 0;
    }

    .sidebar-category a,
    .sidebar-price a {
        min-height: auto;

        padding: 9px 14px;

        border: 1px solid #e5e5e5;

        font-size: 13px;
    }

    .sidebar-category a:hover,
    .sidebar-price a:hover {
        padding-left: 14px;
        background: #111;
        color: #fff;
        border-color: #111;
    }

}

@media(max-width:576px){
	.featured-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}
	
	.product-thumb{
	padding-left:8%;
	padding-right:8%;
	
	
}
.product-grid{

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

}
.header-main .container{

    grid-template-columns:1fr auto auto;

}



.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-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;

}

}