*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body {
    background: #f6f1e7; /* softer beige like Figma */
    font-family: 'Poppins', sans-serif;
    color: #222;
}


.logo {
    font-size: 30px;
    color: #2f5d3a;
    letter-spacing: 1px;
}
/* ================= NAVBAR (PROFILE STYLE) ================= */

header{
    width:100%;
    padding:18px 7%;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h1{
    color:#0d6b2f;
    font-size:42px;
    font-weight:700;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#0d6b2f;
    font-size:15px;
    font-weight:500;
}

.nav-icons{
    display:flex;
    gap:18px;
}

.nav-icons i{
    font-size:18px;
    color:#0d6b2f;
    cursor:pointer;
}
.color-filter h3{
    margin-bottom: 12px;
}

.color-grid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    padding-top:5px;
}

.color-item{
    width:38px;
    height:38px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
}

.color-item input{
    display:none;
}

/* circle */
.color-item span{
    width:28px;
    height:28px;
    border-radius:50%;
    background: var(--c);
    display:block;
    transition:0.2s ease;
    border:2px solid transparent;
}
.sizes{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.size-btn{
    width:45px;
    height:45px;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    border-radius:6px;
}

.size-btn.active{
    background:#000;
    color:#fff;
    border-color:#000;
}

/* hover */
.color-item:hover span{
    transform: scale(1.08);
}


.filter-group{
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.filter-group:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

/* selected */
.color-item input:checked + span{
    border:2px solid #2f5d3a;
    transform: scale(1.15);
    box-shadow:0 0 0 3px rgba(47,93,58,0.15);
}



.filter-group:last-child{
    border-bottom:none;
}
/* TITLE */

.page-title{
    text-align:center;
    padding:40px 0;
}

.page-title h1{
    font-size:42px;
    color:#222;
}

/* SEARCH */

.top-controls {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.search-box input {
    width: 420px;
    height: 48px;
    border-radius: 40px;
    border: 1px solid #ddd;
    padding: 0 20px;
    background: white;
    outline: none;
}

.sort-box select {
    height: 48px;
    border-radius: 40px;
    border: 1px solid #ddd;
    padding: 0 20px;
    background: white;
}

/* SHOP */

.shop-container{
    width:85%;
    margin:auto;
    display:flex;
    gap:40px;
}



/* PRODUCTS */

.products-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.product-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.3s;
}


.product-info{
    padding:15px;
}
.product-card:hover img {
    transform: scale(1.03);
}
.product-info h3{
    margin-bottom:10px;
}

.price{
    color:#215732;
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
}

.product-info button{
    width:100%;
    height:45px;
    border:none;
    background:#215732;
    color:white;
    border-radius:8px;
    cursor:pointer;
}
.product-info button,
.filter-btn {
    background: #2f5d3a;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.product-info button:hover,
.filter-btn:hover {
    background: #24492d;
}
/* PAGINATION */

.pagination{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:50px 0;
}

.pagination button {
    border-radius: 8px;
    background: white;
    border: 1px solid #eee;
    transition: 0.3s;
}

.pagination button:hover {
    background: #2f5d3a;
    color: white;
}
* {
    transition: all 0.2s ease-in-out;
}
/* RESPONSIVE */

@media(max-width:992px){

    .shop-container{
        flex-direction:column;
    }

    .filters{
        width:100%;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .top-controls{
        flex-direction:column;
        gap:20px;
    }

    .search-box input{
        width:100%;
    }

}

.instagram-gallery{
    display:grid;
    grid-template-columns:repeat(7, 1fr);
    align-items:end;
    gap:0;
    margin-top:50px;
}

.img1{height:260px; margin-top:80px;}
.img2{height:380px;}
.img3{height:320px; margin-top:60px;}
.img4{height:430px; margin-bottom:40px;}
.img5{height:330px;}
.img6{height:360px; margin-top:40px;}
.img7{height:300px; margin-top:80px;}

.img-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.instagram-section{
    background:#f6f4ea;
    padding:80px 0;
    text-align:center;
}

.instagram-section h2{
    font-size:52px;
    font-family:serif;
    margin-bottom:15px;
    color:#444;
}

.instagram-section p{
    max-width:650px;
    margin:auto;
    color:#8b8b8b;
    line-height:1.7;
    margin-bottom:60px;
}
/* ================= FOOTER ================= */

.luxury-footer{
    width:100%;
    background:#18392B;
    padding:10px 7% 25px;
    color:#E8D8B0;
    margin-top:40px;
}

/* LOGO */

.footer-logo{
    text-align:center;
    margin-bottom:10px;
}

.footer-logo img{
    width:500px;
    max-width:100%;
}

/* FOOTER CONTENT */

.footer-content{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    align-items:flex-start;
}

/* COLUMN */

.footer-column{
    padding:0 18px;
    border-right:1px solid rgba(232,216,176,0.25);
}

.footer-column:last-child{
    border-right:none;
}

/* HEADINGS */

.footer-column h2{
    font-size:28px;
    margin-bottom:18px;
    font-family:serif;
    font-weight:500;
    color:#E8D8B0;
}

/* LINKS */

.footer-column a{
    display:block;
    text-decoration:none;
    color:#E8D8B0;
    margin-bottom:12px;
    font-size:16px;
    transition:0.3s;
    font-family:serif;
}

.footer-column a:hover{
    padding-left:5px;
}

/* QR */

.qr-section{
    text-align:center;
}

.qr-section img{
    width:140px;
    margin-bottom:10px;
}

.qr-section p{
    font-size:18px;
    line-height:1.4;
    color:#E8D8B0;
    font-family:serif;
}

/* SOCIAL */

.footer-social{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.footer-social i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#E8D8B0;
    color:#18392B;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    cursor:pointer;
}

.footer-column h3{
    font-size:22px;
    font-family:serif;
    font-weight:400;
    color:#E8D8B0;
}

/* COPYRIGHT */

.footer-bottom{
    text-align:center;
    margin-top:35px;
}

.footer-bottom p{
    font-size:16px;
    font-family:serif;
    color:#E8D8B0;
}







.features{
    background:lab(96.25% -1.7 17.72);
    padding:30px;
    display:flex;
    justify-content:space-around;
}

.feature{
    display:flex;
    gap:12px;
    align-items:center;
}
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* base button */
.page-btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fff;
}

/* hover effect */
.page-btn:hover {
    background: hsl(120, 78%, 16%);
    color: #fff;
    border-color:hsl(120, 78%, 16%);
    transform: translateY(-1px);
}

/* active page */
.page-btn.active {
    background:hsl(120, 78%, 16%);
    color: #fff;
    border-color: hsl(120, 78%, 16%);
    font-weight: 600;
}

/* prev / next special style */
.page-btn:first-child,
.page-btn:last-child {
    font-weight: 500;
}

/* disabled look (optional if you add disabled links later) */
.page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}
.page-btn {
    border-radius: 50px;
    padding: 8px 16px;
}
.pagination {
    gap: 10px;
}
.search-box{
    width: 420px;
}

.search-box form{
    position: relative;
}

.search-box input{
    width: 100%;
    height: 48px;
    border-radius: 40px;
    border: 1px solid #ddd;
    padding: 0 45px 0 20px;
    background: white;
    outline: none;
}
.clear-search-btn{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    color: #888;
    font-size: 16px;
    display: none;
}

.clear-search-btn:hover{
    color: #e53935;
}

.product-card{
    position: relative;
}

.wishlist-top{
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.wishlist-top a{
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.wishlist-top i{
    font-size: 20px;
}
.addToCartBtn:disabled{
    background:#ccc;
    color:#666;
    cursor:not-allowed;
    opacity:0.7;
}
/* =========================
   OFFER BADGE
========================= */

.product-image {
    position: relative;
}

.offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;

    background: #b91c1c;
    color: #fff;

    padding: 6px 11px;

    font-size: 12px;
    font-weight: 700;

    border-radius: 4px;

    letter-spacing: 0.5px;
}


/* =========================
   OFFER NAME
========================= */

.offer-name {
    margin-top: 7px;

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

    color: #166534;

    display: flex;
    align-items: center;
    gap: 5px;
}


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

.price-section {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 7px;
}


/* OFFER PRICE */

.offer-price {
    font-size: 18px;
    font-weight: 700;

    color: #222;
}


/* ORIGINAL PRICE */

.original-price {
    font-size: 13px;

    color: #888;

    text-decoration: line-through;
}


/* NORMAL PRICE */

.normal-price {
    font-size: 18px;
    font-weight: 700;

    color: #222;
}


/* =========================
   SAVING
========================= */

.offer-saving {
    margin-top: 4px;

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

    color: #b91c1c;
}

/* =====================================================
   SHOP FILTER BOX
===================================================== */

.filters {
    width: 290px;
    min-width: 290px;

    background: #ffffff;

    padding: 22px;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    align-self: flex-start;
}


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

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}


.filter-header h2 {
    margin: 0;

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

    color: #222;
}


/* Clear All */

.clear-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 7px 11px;

    border: 1px solid #d7ddd8;

    border-radius: 20px;

    background: #fff;

    color: #555;

    font-size: 12px;

    cursor: pointer;

    transition: 0.25s ease;
}


.clear-filter-btn:hover {
    border-color: #2f5d3a;
    color: #2f5d3a;
    background: #f7faf7;
}


.clear-filter-btn i {
    font-size: 11px;
}


/* =====================================================
   FILTER GROUP
===================================================== */

.filter-group {
    margin-bottom: 22px;

    padding-bottom: 20px;

    border-bottom: 1px solid #eeeeee;
}


.filter-group:last-of-type {
    border-bottom: none;
}


/* =====================================================
   FILTER TITLE
===================================================== */

.filter-title {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;
}


.filter-title h3 {
    margin: 0;

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #333;
}


.filter-title h3 i {
    color: #2f5d3a;

    font-size: 13px;
}


.filter-arrow {
    color: #777;

    font-size: 11px;

    cursor: pointer;
}


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

.category-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.category-option {
    display: flex;

    align-items: center;

    gap: 9px;

    cursor: pointer;

    font-size: 13px;

    color: #666;

    transition: 0.2s ease;
}


.category-option:hover {
    color: #2f5d3a;
}


/* Hide original radio */

.category-option input {
    display: none;
}


/* Custom radio */

.custom-radio {
    width: 16px;
    height: 16px;

    border: 1.5px solid #999;

    border-radius: 50%;

    display: flex;

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

    flex-shrink: 0;

    transition: 0.2s ease;
}


/* Selected radio */

.category-option input:checked + .custom-radio {
    border-color: #2f5d3a;
}


.category-option input:checked + .custom-radio::after {
    content: "";

    width: 8px;
    height: 8px;

    background: #2f5d3a;

    border-radius: 50%;
}


/* Selected category text */

.category-option input:checked ~ .category-name {
    color: #2f5d3a;

    font-weight: 500;
}


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

.price-slider {
    position: relative;

    height: 25px;

    margin: 5px 5px 0;
}


/* Background line */

.range-track {
    position: absolute;

    left: 0;
    right: 0;

    top: 50%;

    height: 4px;

    background: #dedede;

    border-radius: 5px;

    transform: translateY(-50%);
}


/* Range sliders */

.price-slider input[type="range"] {

    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;

    transform: translateY(-50%);

    pointer-events: none;

    appearance: none;

    background: transparent;

    margin: 0;
}


/* Slider thumb */

.price-slider input[type="range"]::-webkit-slider-thumb {

    appearance: none;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #2f5d3a;

    border: 2px solid #ffffff;

    box-shadow: 0 1px 4px rgba(0,0,0,0.15);

    cursor: pointer;

    pointer-events: auto;
}


.price-slider input[type="range"]::-moz-range-thumb {

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #2f5d3a;

    border: 2px solid #ffffff;

    cursor: pointer;

    pointer-events: auto;
}


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

.price-labels {

    display: flex;

    justify-content: space-between;

    margin-top: 4px;

    font-size: 12px;

    color: #555;
}


/* =====================================================
   PRICE INPUT BOXES
===================================================== */

.price-inputs {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;
}


.price-input {

    flex: 1;

    height: 38px;

    display: flex;

    align-items: center;

    border: 1px solid #dddddd;

    border-radius: 7px;

    background: #fff;

    padding: 0 9px;
}


.price-input span {

    color: #777;

    font-size: 12px;

    margin-right: 3px;
}


.price-input input {

    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    font-size: 12px;

    color: #333;
}


/* Remove number arrows */

.price-input input::-webkit-inner-spin-button,
.price-input input::-webkit-outer-spin-button {
    appearance: none;

    margin: 0;
}


.price-input input[type="number"] {
    appearance: textfield;
}


.price-separator {

    color: #999;

    font-size: 13px;
}


/* =====================================================
   APPLY FILTER BUTTON
===================================================== */

.filter-btn {

    width: 100%;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border: none;

    border-radius: 10px;

    background: #2f5d3a;

    color: #ffffff;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

    transition: all 0.25s ease;

    margin-top: 3px;
}


.filter-btn i {
    font-size: 12px;
}


.filter-btn:hover {

    background: #24492d;

    transform: translateY(-1px);

    box-shadow: 0 5px 12px rgba(47, 93, 58, 0.18);
}


.filter-btn:active {
    transform: translateY(0);
}