:root {

    --primary:#3b3028;
    --primary-light:#5a493d;
    --secondary:#7c8a70;

    --accent:#b59b6b;
    --cream:#eee8de;
    --cream-light:#f5f0e7;

    --ivory:#fffaf2;
    --white:#fff;
    --text:#302923;
    --text-light:#766d65;

    --border:#ded4c5;
    --border-light:#e9e1d5;

    --shadow:0 15px 40px rgba(59,48,40,.10);

    --shadow-hover:0 20px 50px rgba(59,48,40,.16);

}

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

html {
    scroll-behavior:smooth
}

body {
    font-family:"Inter",Arial,sans-serif;
    background:var(--cream);
    color:var(--text);
    overflow-x:hidden;
    width:100%;
    max-width:100%;
    min-width:0
}

button,a,input,textarea,select {
    font-family:inherit
}

button {
    border:none
}

a {
    text-decoration:none
}

/* MOBILE BRAND / OFFCANVAS */
.mobile-brand {
    color:var(--primary)!important;
    text-decoration:none!important
}

.mobile-brand span {
    color:var(--accent)!important
}

.offcanvas {
    background:var(--ivory)
}

.offcanvas-header {
    padding:20px;
    border-bottom:1px solid var(--border)
}

.offcanvas-title {
    font-family:Georgia,"Times New Roman",serif;
    color:var(--primary);
    font-size:24px;
    font-weight:700
}

.offcanvas-title span {
    color:var(--accent)
}

.mobile-menu {
    list-style:none;
    padding:0;
    margin:10px 0 0
}

.mobile-menu li {
    margin-bottom:6px
}

.mobile-menu a {
    display:flex;
    align-items:center;
    gap:12px;
    padding:13px 15px;
    border-radius:10px;
    color:var(--primary);
    font-size:15px;
    font-weight:500;
    transition:.3s ease
}

.mobile-menu a i {
    font-size:18px;
    width:22px
}

.mobile-menu a:hover,.mobile-menu a:active {
    background:var(--cream);
    color:var(--primary)
}

/* MAIN LAYOUT */
.main-wrapper {
    min-height:100vh;
    display:flex;
    width:100%;
    overflow-x:hidden
}

/* DESKTOP SIDEBAR */
.sidebar {
    width:250px;
    height:100vh;
    background:var(--primary);
    color:var(--white);
    padding:30px 22px 22px;
    position:fixed;
    left:0;
    top:0;
    z-index:1000;
    display:flex;
    flex-direction:column;
    overflow:hidden
}

.brand-area {
    padding:2px 10px 18px;
    border-bottom:1px solid rgba(255,255,255,.12);
    flex-shrink:0
}

.brand-area .brand {
    font-family:Georgia,"Times New Roman",serif;
    font-size:28px;
    font-weight:600;
    letter-spacing:-.5px;
    color:var(--white);
    margin-bottom:5px
}

.brand span {
    color:#c7b58d
}

.brand-tagline {
    font-size:10.5px;
    line-height:1.5;
    color:rgba(255,255,255,.48);
    margin:0
}

.sidebar-nav {
    padding-top:18px;
    flex-shrink:0
}

.menu-title {
    font-size:9px;
    font-weight:600;
    letter-spacing:1.5px;
    color:rgba(255,255,255,.35);
    margin:0 0 10px 10px
}

.second-title {
    margin-top:24px
}

.sidebar-nav .nav-link {
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 12px;
    margin-bottom:4px;
    border-radius:10px;
    color:rgba(255,255,255,.62);
    font-size:13px;
    transition:.3s ease
}

.sidebar-nav .nav-link i {
    font-size:16px;
    width:20px;
    text-align:center
}

.sidebar-nav .nav-link:hover {
    background:rgba(255,255,255,.07);
    color:var(--white);
    transform:translateX(3px)
}

.sidebar-nav .nav-link.active {
    background:rgba(181,155,107,.18);
    color:#d8c092
}

.sidebar-nav .nav-link.active i {
    color:#d8c092
}

.sidebar-bottom {
    margin-top:auto;
    padding-top:15px;
    flex-shrink:0
}

.copyright {
    color:rgba(255,255,255,.28);
    font-size:9px;
    margin:0 5px
}

/* CONTENT: FIXES HALF-WIDTH PROBLEM */
.content-area {
    width:calc(100% - 250px);
    max-width:calc(100% - 250px);
    margin-left:250px;
    min-height:100vh;
    min-width:0;
    overflow-x:hidden
}

/* HEADER: FIXED BESIDE SIDEBAR */
.top-header {
    min-height:82px;
    height:auto;
    padding:18px 42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    background:rgba(255,250,242,.95);
    border-bottom:1px solid var(--border);
    position:fixed;
    top:0;
    left:250px;
    right:0;
    z-index:900;
    backdrop-filter:blur(15px);
    box-sizing:border-box;
    min-width:0
}

.top-header>div:first-child {
    min-width:0;
    flex:1
}

.top-header h2 {
    font-family:Georgia,"Times New Roman",serif;
    font-size:21px;
    font-weight:600;
    color:var(--primary);
    margin:0;
    line-height:1.3;
    overflow-wrap:break-word
}

.header-actions {
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
    min-width:0
}

.search-box {
    width:210px;
    height:40px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:0 13px;
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:30px
}

.search-box i {
    color:var(--text-light)
}

.search-box input {
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    font-size:12px;
    color:var(--text)
}

.search-box input::placeholder {
    color:#aaa19a
}

.header-icon {
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--ivory);
    border:1px solid var(--border);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    cursor:pointer;
    transition:.3s ease
}

.header-icon:hover {
    background:var(--primary);
    color:var(--white);
    transform:translateY(-2px)
}

.wishlist-count,.cart-count {
    position:absolute;
    top:-4px;
    right:-3px;
    width:17px;
    height:17px;
    border-radius:50%;
    background:var(--accent);
    color:var(--white);
    font-size:9px;
    display:flex;
    align-items:center;
    justify-content:center
}

/* PAGE SPACING: HEADER IS FIXED */
.home-page,.shop-page,.inspiration-page {
    width:100%;
    max-width:100%;
    overflow:hidden
}

.home-page {
    padding:112px 42px 45px
}

.shop-page {
    padding:112px 42px 45px
}

.inspiration-page {
    padding:112px 42px 45px;
    background:linear-gradient(135deg,#eee8de 0%,#f5f0e7 100%)
}

/* HERO */
.home-hero {
    width:100%;
    max-width:100%;
    margin-bottom:60px
}

.hero-image-content {
    min-height:520px;
    width:100%;
    border-radius:24px;
    position:relative;
    overflow:hidden;
    background-image:url("bg.jpeg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    box-shadow:0 20px 50px rgba(59,48,40,.14)
}

.hero-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(42,34,29,.82) 0%,rgba(42,34,29,.55) 45%,rgba(42,34,29,.12) 100%)
}

.hero-text {
    position:relative;
    z-index:2;
    width:100%;
    max-width:610px;
    padding:65px;
    color:var(--white)
}

.hero-badge {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 14px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:30px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    margin-bottom:22px
}

.hero-text h1 {
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(42px,5vw,68px);
    line-height:1.04;
    font-weight:500;
    letter-spacing:-2px;
    margin-bottom:22px;
    overflow-wrap:break-word
}

.hero-text h1 span {
    display:block;
    color:#d6c29a;
    font-style:italic
}

.hero-text p {
    max-width:520px;
    color:rgba(255,255,255,.78);
    font-size:14px;
    line-height:1.8;
    margin-bottom:30px
}

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

.hero-primary-btn,.hero-secondary-btn {
    min-height:48px;
    padding:0 22px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    transition:.3s ease
}

.hero-primary-btn {
    background:#f3eee5;
    color:var(--primary)
}

.hero-primary-btn:hover {
    background:#d8c8a8;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.18)
}

.hero-secondary-btn {
    background:transparent;
    color:var(--white);
    border:1px solid rgba(255,255,255,.42)
}

.hero-secondary-btn:hover {
    background:rgba(255,255,255,.12);
    transform:translateY(-3px)
}

.hero-actions i {
    margin-left:7px
}

/* COMMON SECTIONS */
.home-section {
    width:100%;
    max-width:100%;
    margin-bottom:60px
}

.section-top {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:30px
}

.section-top>div {
    min-width:0
}

.section-label {
    display:block;
    color:var(--secondary);
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:9px
}

.section-top h2 {
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(28px,3vw,38px);
    font-weight:500;
    color:var(--primary);
    margin-bottom:8px
}

.section-top p {
    max-width:600px;
    color:var(--text-light);
    font-size:13px;
    line-height:1.7;
    margin:0
}

.section-link {
    flex-shrink:0;
    background:transparent;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    padding:10px 0;
    border-bottom:1px solid var(--accent);
    cursor:pointer;
    transition:.3s ease
}

.section-link i {
    margin-left:7px;
    transition:transform .3s ease
}

.section-link:hover {
    color:var(--secondary)
}

.section-link:hover i {
    transform:translateX(4px)
}

/* CATEGORY */
.category-section {
    scroll-margin-top:100px
}

.category-section .row {
    width:100%;
    margin-left:0;
    margin-right:0
}

.category-section .row>* {
    min-width:0
}

.category-card {
    height:100%;
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 8px 28px rgba(59,48,40,.08);
    transition:.4s ease
}

.category-card:hover {
    transform:translateY(-7px);
    box-shadow:var(--shadow-hover);
    border-color:#cdbb9d
}

.category-image {
    height:280px;
    position:relative;
    overflow:hidden;
    background:#e4ddd2
}

.category-image img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .6s ease
}

.category-card:hover .category-image img {
    transform:scale(1.07)
}

.category-image-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(40,33,28,.02) 35%,rgba(40,33,28,.35) 100%)
}

.category-icon {
    position:absolute;
    top:16px;
    right:16px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,250,242,.92);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    box-shadow:0 7px 20px rgba(0,0,0,.1);
    transition:.3s ease
}

.category-card:hover .category-icon {
    background:var(--primary);
    color:var(--white);
    transform:rotate(8deg)
}

.category-info {
    min-height:95px;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px
}

.category-info>div {
    min-width:0
}

.category-info h4 {
    font-family:Georgia,"Times New Roman",serif;
    color:var(--primary);
    font-size:18px;
    font-weight:600;
    margin-bottom:5px
}

.category-info p {
    color:var(--text-light);
    font-size:11px;
    margin:0
}

.category-arrow {
    width:38px;
    height:38px;
    flex-shrink:0;
    border:1px solid var(--border);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    transition:.3s ease
}

.category-card:hover .category-arrow {
    background:var(--secondary);
    border-color:var(--secondary);
    color:var(--white);
    transform:rotate(45deg)
}

.category-products {
    display:none;
    margin-top:45px;
    padding:30px;
    background:#e8e0d4;
    border:1px solid var(--border);
    border-radius:20px;
    animation:categoryReveal .4s ease
}

.category-products.show {
    display:block
}

.category-products-header {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:8px
}

.category-products-header h3 {
    font-family:Georgia,"Times New Roman",serif;
    font-size:28px;
    font-weight:500;
    color:var(--primary)
}

.category-products>p {
    color:var(--text-light);
    font-size:13px;
    margin-bottom:25px
}

.category-close-btn {
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--ivory);
    color:var(--primary);
    border:1px solid var(--border);
    cursor:pointer;
    transition:.3s ease
}

.category-close-btn:hover {
    background:var(--primary);
    color:var(--white);
    transform:rotate(90deg)
}

.category-product-card {
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:15px;
    overflow:hidden;
    transition:.3s ease
}

.category-product-card:hover {
    transform:translateY(-5px);
    box-shadow:var(--shadow)
}

.category-product-card img {
    width:100%;
    height:180px;
    object-fit:cover
}

.category-product-info {
    padding:15px
}

.category-product-info small {
    color:var(--secondary);
    font-size:9px;
    font-weight:700;
    letter-spacing:1px
}

.category-product-info h5 {
    color:var(--primary);
    font-size:15px;
    margin:6px 0
}

.category-product-info strong {
    color:var(--primary);
    font-size:14px
}

@keyframes categoryReveal {
    from {
        opacity:0;
        transform:translateY(15px)
    }
    to {
        opacity:1;
        transform:translateY(0)
    }
}

/* FOOTER*/
.footer {
    background:var(--primary);
    color:var(--white);
    margin:25px 42px 0;
    padding:38px 35px 18px;
    border-radius:24px 24px 0 0;
    box-shadow:0 -10px 30px rgba(59,48,40,.08)
}

.footer-container {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:30px;
    padding-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.12)
}

.footer-brand h3 {
    font-family:Georgia,"Times New Roman",serif;
    font-size:26px;
    font-weight:600;
    margin-bottom:8px
}

.footer-brand h3 span {
    color:#c7b58d
}

.footer-brand>p {
    color:rgba(255,255,255,.55);
    font-size:11px;
    line-height:1.5;
    margin-bottom:15px
}

.footer-social {
    display:flex;
    gap:8px
}

.footer-social a {
    width:32px;
    height:32px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgba(255,255,255,.65);
    font-size:12px;
    transition:.3s ease
}

.footer-social a:hover {
    background:#c7b58d;
    border-color:#c7b58d;
    color:var(--primary);
    transform:translateY(-3px)
}

.footer-column {
    display:flex;
    flex-direction:column;
    align-items:flex-start
}

.footer-column h4 {
    color:var(--white);
    font-size:12px;
    font-weight:700;
    margin-bottom:13px
}

.footer-column a {
    color:rgba(255,255,255,.52);
    font-size:10px;
    margin-bottom:8px;
    transition:.3s ease
}

.footer-column a:hover {
    color:#d8c092;
    transform:translateX(3px)
}

.footer-contact p {
    color:rgba(255,255,255,.52);
    font-size:10px;
    margin-bottom:8px;
    display:flex;
    align-items:center;
    gap:8px
}

.footer-contact i {
    color:#c7b58d;
    font-size:12px
}

.footer-bottom {
    padding-top:15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px
}

.footer-bottom p {
    color:rgba(255,255,255,.35);
    font-size:8px;
    margin:0
}

/* SHOP */
.shop-header {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px
}

.shop-header h1 {
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:38px;
    font-weight:600;
    margin:7px 0 8px;
    letter-spacing:-1px
}

.shop-header p {
    color:var(--text-light);
    font-size:14px;
    margin:0;
    max-width:550px
}

.shop-result-count {
    color:var(--text-light);
    font-size:13px;
    white-space:nowrap
}

.shop-result-count span {
    color:var(--primary);
    font-weight:600
}

.shop-controls {
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
    flex-wrap:wrap
}

.shop-search {
    flex:1;
    max-width:420px;
    min-width:200px;
    height:46px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 15px;
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:10px
}

.shop-search i {
    color:#9a958c;
    font-size:16px
}

.shop-search input {
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    color:var(--primary);
    font-size:13px
}

.shop-search input::placeholder {
    color:#aaa49b
}

.shop-controls select {
    height:46px;
    max-width:100%;
    padding:0 35px 0 14px;
    border:1px solid var(--border);
    border-radius:10px;
    background:var(--ivory);
    color:#4f4a43;
    font-size:12px;
    outline:none;
    cursor:pointer
}

.category-filter-buttons {
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:30px
}

.category-filter-btn {
    border:1px solid var(--border);
    background:var(--ivory);
    color:#68625a;
    padding:8px 15px;
    border-radius:30px;
    font-size:11px;
    cursor:pointer;
    transition:.3s ease
}

.category-filter-btn:hover {
    border-color:var(--accent);
    color:#9a7b43
}

.category-filter-btn.active {
    background:var(--primary);
    border-color:var(--primary);
    color:var(--white)
}

.shop-product-card {
    height:100%;
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;
    transition:.3s ease;
    box-shadow:0 7px 25px rgba(59,48,40,.06)
}

.shop-product-card:hover {
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
    border-color:#cdbb9d
}

.shop-product-image {
    height:250px;
    position:relative;
    overflow:hidden;
    background:#e4ddd2
}

.shop-product-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .5s ease
}

.shop-product-card:hover .shop-product-image img {
    transform:scale(1.05)
}

.shop-product-badge {
    position:absolute;
    top:13px;
    left:13px;
    z-index:2;
    background:var(--primary);
    color:var(--white);
    padding:5px 9px;
    border-radius:5px;
    font-size:9px;
    font-weight:600;
    letter-spacing:.5px
}

.shop-wishlist-btn {
    position:absolute;
    top:12px;
    right:12px;
    z-index:2;
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:rgba(255,250,242,.92);
    color:#5d5850;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s ease
}

.shop-wishlist-btn:hover {
    background:var(--primary);
    color:var(--white)
}

.shop-wishlist-btn.active {
    background:var(--accent);
    color:var(--white)
}

.shop-product-info {
    padding:17px
}

.shop-product-info .product-category {
    color:#a58a5d;
    font-size:10px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:6px
}

.shop-product-info h4 {
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    margin-bottom:12px
}

.shop-product-bottom {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px
}

.shop-product-price {
    color:var(--primary);
    font-size:15px;
    font-weight:700
}

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

.product-action-btn {
    width:34px;
    height:34px;
    border:1px solid var(--border);
    border-radius:8px;
    background:var(--ivory);
    color:#5c574f;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s ease
}

.product-action-btn:hover {
    background:var(--primary);
    color:var(--white);
    border-color:var(--primary)
}

.no-products {
    display:none;
    text-align:center;
    padding:70px 20px
}

.no-products i {
    font-size:35px;
    color:var(--accent)
}

.no-products h3 {
    color:var(--primary);
    margin:15px 0 5px;
    font-size:20px
}

.no-products p {
    color:#88827a;
    font-size:13px
}

/* MODAL */
.modal-content {
    background:var(--ivory);
    border:none;
    border-radius:18px;
    overflow:hidden
}

.modal-body {
    padding:25px;
    overflow-wrap:break-word
}

.modal-body .row {
    align-items:center
}


#quickViewImage {
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:12px
}

#quickViewDescription {
    color:var(--text-light);
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
    overflow-wrap:break-word;
    word-break:normal;
    white-space:normal
}

#quickViewName {
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:28px;
    margin:8px 0 15px
}

#quickViewPrice {
    color:var(--primary);
    font-size:22px;
    margin-bottom:20px
}

#quickCartButton {
    width:100%;
    border:none;
    background:var(--primary);
    color:var(--white);
    padding:13px;
    border-radius:9px;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease
}

#quickCartButton:hover {
    background:var(--accent)
}

/* INSPIRATION */
.inspiration-header {
    text-align:center;
    margin-bottom:45px
}

.inspiration-header h1 {
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:42px;
    font-weight:600;
    margin:10px 0
}

.inspiration-header p {
    color:var(--text-light);
    max-width:600px;
    margin:auto;
    line-height:1.7
}

.inspiration-card {
    height:100%;
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 28px rgba(59,48,40,.08);
    transition:.35s ease
}

.inspiration-card:hover {
    transform:translateY(-7px);
    box-shadow:var(--shadow-hover);
    border-color:#cdbb9d
}

.inspiration-image {
    height:300px;
    overflow:hidden;
    cursor:pointer
}

.inspiration-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease
}

.inspiration-image:hover img {
    transform:scale(1.06)
}

.inspiration-image img.image-active {
    transform:scale(1.12)
}

.inspiration-info {
    padding:25px;
    position:relative
}

.inspiration-number {
    color:#a17b59;
    font-size:13px;
    font-weight:600
}

.inspiration-info h3 {
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:24px;
    margin:8px 0
}

.inspiration-info p {
    color:var(--text-light);
    line-height:1.6;
    margin-bottom:18px
}

.inspiration-btn {
    background:transparent;
    border:none;
    padding:0;
    color:#8b6547;
    font-weight:600;
    cursor:pointer
}

.inspiration-btn i {
    margin-left:5px;
    transition:transform .3s ease
}

.inspiration-btn:hover i {
    transform:translateX(5px)
}

.related-products {
    display:none;
    margin-top:60px;
    padding:30px;
    background:#e5ddd1;
    border:1px solid var(--border);
    border-radius:18px
}

.related-products.active {
    display:block
}

.related-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px
}

.related-header h2 {
    color:var(--primary);
    margin-top:8px
}

.related-close-btn {
    border:1px solid var(--border);
    background:var(--ivory);
    color:var(--primary);
    width:38px;
    height:38px;
    border-radius:50%;
    cursor:pointer;
    transition:.3s ease
}

.related-close-btn:hover {
    background:var(--primary);
    color:var(--white);
    transform:rotate(90deg)
}

.related-product-card {
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:10px;
    overflow:hidden;
    height:100%
}

.related-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    
}
.related-product-info {
    padding:15px
}

.related-product-info h5 {
    color:var(--primary);
    margin-bottom:8px
}

.related-product-info p {
    color:#8b6547;
    font-weight:600
}

/* ABOUT */
.about-page {
    display:none;
    min-height:70vh;
    padding:85px 50px;
    background:linear-gradient(135deg,#e9e2d7 0%,#f5f0e7 50%,#e6ddd0 100%)
}

.about-content {
    max-width:1100px;
    margin:0 auto;
    text-align:center
}

.about-content .section-label {
    display:inline-block;
    margin-bottom:16px;
    color:var(--secondary);
    letter-spacing:2.5px;
    font-size:11px;
    font-weight:800
}

.about-content h1 {
    margin:0 auto 22px;
    max-width:800px;
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:46px;
    line-height:1.15;
    font-weight:500;
    letter-spacing:-1px
}

.about-content>p {
    max-width:820px;
    margin:0 auto 14px;
    color:var(--text-light);
    font-size:15px;
    line-height:1.8
}

.about-cards {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:55px
}

.about-card {
    position:relative;
    padding:38px 28px;
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:0 12px 35px rgba(59,48,40,.09);
    transition:.35s ease
}

.about-card::before {
    content:"";
    position:absolute;
    top:0;
    left:30px;
    right:30px;
    height:3px;
    border-radius:0 0 10px 10px;
    background:var(--accent)
}

.about-card:hover {
    transform:translateY(-9px);
    background:#fffdf9;
    border-color:#cbb58f;
    box-shadow:0 20px 45px rgba(59,48,40,.15)
}

.about-card i {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    margin-bottom:20px;
    border-radius:50%;
    background:#e3dacb;
    color:var(--primary);
    font-size:27px;
    box-shadow:0 7px 18px rgba(59,48,40,.08);
    transition:.3s ease
}

.about-card:hover i {
    background:var(--primary);
    color:#d8c092;
    transform:rotate(8deg) scale(1.05)
}

.about-card h3 {
    margin-bottom:12px;
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:21px;
    font-weight:600
}

.about-card p {
    margin:0;
    color:var(--text-light);
    font-size:13px;
    line-height:1.7
}

/* CONTACT */
.contact-page {
    display:none;
    min-height:70vh;
    padding:85px 50px;
    background:linear-gradient(135deg,#e6dfd4 0%,#f4efe6 50%,#e9e1d5 100%)
}

.contact-header {
    max-width:800px;
    margin:0 auto 50px;
    text-align:center
}

.contact-header .section-label {
    display:inline-block;
    margin-bottom:16px;
    color:var(--secondary);
    letter-spacing:2.5px;
    font-size:11px;
    font-weight:800
}

.contact-header h1 {
    margin-bottom:18px;
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:44px;
    line-height:1.2;
    font-weight:500;
    letter-spacing:-1px
}

.contact-header p {
    margin:0;
    color:var(--text-light);
    font-size:15px;
    line-height:1.8
}

.contact-content {
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:45px;
    align-items:stretch
}

.contact-info {
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:18px
}

.contact-item {
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:17px;
    box-shadow:0 9px 28px rgba(59,48,40,.08);
    transition:.35s ease
}

.contact-item:hover {
    transform:translateX(7px);
    background:#fffdf9;
    border-color:#cbb58f;
    box-shadow:0 15px 35px rgba(59,48,40,.14)
}

.contact-icon {
    flex-shrink:0;
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#e3dacb;
    color:var(--primary);
    font-size:20px;
    transition:.3s ease
}

.contact-item:hover .contact-icon {
    background:var(--primary);
    color:#d8c092;
    transform:scale(1.05)
}

.contact-item h4 {
    margin:0 0 5px;
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:17px;
    font-weight:600
}

.contact-item p {
    margin:0;
    color:var(--text-light);
    font-size:13px
}

.contact-form-box {
    padding:28px;
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 15px 40px rgba(59,48,40,.10)
}

.contact-form-box form {
    display:flex;
    flex-direction:column;
    gap:14px
}

.form-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px
}

.form-group {
    display:flex;
    flex-direction:column;
    gap:8px
}

.form-group label {
    font-size:12px;
    font-weight:700;
    color:#51453b
}

.form-group input,.form-group textarea {
    width:100%;
    padding:11px 14px;
    border:1px solid #d7cec0;
    border-radius:10px;
    outline:none;
    background:#f1ebe2;
    color:var(--primary);
    font-family:inherit;
    font-size:13px;
    transition:.3s ease
}

.form-group input::placeholder,.form-group textarea::placeholder {
    color:#9b9389
}

.form-group input:focus,.form-group textarea:focus {
    border-color:var(--accent);
    background:#fffdf9;
    box-shadow:0 0 0 3px rgba(181,155,107,.14)
}

.form-group textarea {
    min-height:105px;
    resize:none
}

.contact-submit-btn {
    width:fit-content;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 25px;
    border:none;
    border-radius:10px;
    background:var(--primary);
    color:var(--white);
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease
}

.contact-submit-btn:hover {
    transform:translateY(-3px);
    background:var(--primary-light);
    box-shadow:0 10px 25px rgba(59,48,40,.20)
}

.contact-submit-btn i {
    transition:transform .3s ease
}

.contact-submit-btn:hover i {
    transform:translateX(4px)
}

.contact-message-status {
    margin:0;
    min-height:20px;
    color:var(--secondary);
    font-size:13px;
    font-weight:600
}

/* NOTIFICATION */
.notification {
    position:fixed;
    top:95px;
    right:30px;
    z-index:3000;
    background:var(--primary);
    color:var(--white);
    padding:13px 20px;
    border-radius:10px;
    font-size:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    opacity:0;
    visibility:hidden;
    transform:translateY(-15px);
    transition:.3s ease
}

.notification.show {
    opacity:1;
    visibility:visible;
    transform:translateY(0)
}

#shopPage,#inspirationPage,#aboutPage,#contactPage {
    display:none
}

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

    .top-header {
        padding-left:30px;
        padding-right:30px
    }

    .home-page,.shop-page,.inspiration-page {
        padding-left:30px;
        padding-right:30px
    }

    .footer {
        margin-left:30px;
        margin-right:30px
    }

    .hero-text {
        padding:50px
    }

    .footer-container {
        gap:25px
    }

}

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

    .sidebar {
        width:220px
    }

    .content-area {
        width:calc(100% - 220px);
        max-width:calc(100% - 220px);
        margin-left:220px
    }

    .top-header {
        left:220px;
        padding:16px 25px
    }

    .search-box {
        width:180px
    }

    .home-page,.shop-page,.inspiration-page {
        padding-left:25px;
        padding-right:25px
    }

    .hero-text {
        padding:45px
    }

    .about-page,.contact-page {
        padding:60px 30px
    }

    .about-content h1,.contact-header h1 {
        font-size:38px
    }

    .about-cards {
        grid-template-columns:repeat(3,1fr);
        gap:16px
    }

    .contact-content {
        grid-template-columns:1fr
    }

    .contact-info {
        display:grid;
        grid-template-columns:repeat(3,1fr)
    }

    .contact-item {
        flex-direction:column;
        text-align:center
    }

    .footer {
        margin-left:25px;
        margin-right:25px
    }

    .footer-container {
        grid-template-columns:2fr 1fr 1fr;
        gap:25px
    }

    .footer-contact {
        grid-column:span 3
    }

}

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

    .sidebar {
        display:none
    }
    .shop-product-image{
        height: 220px;
    }
    /* MOBILE: HAMBURGER ABOVE THE NORMAL TOP HEADER */
    .mobile-navbar {
        display:flex !important;
        align-items:center;
        justify-content:flex-start;
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:46px;
        padding:0 16px;
        background:rgba(255,250,242,.98);
        border-bottom:1px solid var(--border);
        box-sizing:border-box;
        z-index:1000;
        overflow:hidden;
    }

    /* Only keep the hamburger in the mobile bar */
    .mobile-navbar > :first-child {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .mobile-navbar {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
    }

    

    .mobile-navbar button,
    .mobile-navbar a {
        color:var(--primary);
        background:transparent;
        border:none;
        text-decoration:none;
        cursor:pointer;
    }

    .mobile-navbar i {
        font-size:17px;
    }

    .offcanvas {
        width:80%!important;
    }

    /* Keep the main top header visible on mobile */
    .top-header {
        display:flex !important;
        top:46px;
        left:0;
        right:0;
        width:100%;
        min-height:70px;
        padding:12px 14px;
        gap:8px;
        box-sizing:border-box;
        overflow:hidden;
        z-index:900;
    }

    .top-header > div:first-child {
        min-width:0;
        flex:1 1 auto;
        width:auto;
        overflow:hidden;
    }

    .top-header h2 {
        font-size:17px;
        line-height:1.2;
        white-space:normal;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .header-actions {
        display:flex;
        align-items:center;
        justify-content:flex-end;
        gap:6px;
        flex:0 0 auto;
        min-width:0;
    }

    .search-box {
        display:flex !important;
        width:145px;
        height:38px;
        flex-shrink:1;
        padding:0 10px;
    }

    .search-box input {
        font-size:11px;
    }

    .header-icon {
        width:36px;
        height:36px;
        flex:0 0 36px;
    }

    /* FULL MOBILE WIDTH */
    .content-area {
        width:100%;
        max-width:100%;
        min-width:0;
        margin-left:0;
        overflow-x:hidden;
    }

    .home-page,.shop-page,.inspiration-page {
        padding-top:130px
    }

    .home-page,.shop-page,.inspiration-page {
        padding-left:18px;
        padding-right:18px
    }

    .hero-image-content {
        min-height:480px
    }

    .hero-text {
        max-width:100%;
        padding:35px 25px
    }

    .hero-text h1 {
        font-size:clamp(36px,10vw,50px);
        letter-spacing:-1px
    }

    .hero-text p {
        font-size:13px
    }

    .hero-actions {
        flex-direction:column;
        align-items:flex-start
    }

    .category-image {
        height:260px
    }

    .section-top {
        align-items:flex-start;
        flex-direction:column;
        gap:15px
    }

    .section-top h2 {
        font-size:30px
    }

    .shop-header {
        align-items:flex-start;
        flex-direction:column
    }

    .shop-header h1 {
        font-size:32px
    }

    .shop-controls {
        flex-direction:column;
        align-items:stretch
    }

    .shop-search {
        max-width:100%;
        width:100%
    }

    .shop-controls select {
        width:100%
    }

    .shop-product-image {
        height:260px
    }

    .inspiration-header {
        margin-bottom:30px
    }

    .inspiration-header h1 {
        font-size:34px
    }

    .inspiration-image {
        height:260px
    }

    .about-page {
        padding:45px 18px 55px
    }

    .about-content h1,.contact-header h1 {
        font-size:32px
    }

    .about-content>p,.contact-header p {
        font-size:14px
    }

    .about-cards {
        grid-template-columns:1fr;
        gap:18px;
        margin-top:35px
    }

    .contact-page {
        padding:45px 18px 55px
    }

    .contact-header {
        margin-bottom:30px
    }

    .contact-content {
        grid-template-columns:1fr;
        gap:20px
    }

    .contact-info {
        grid-template-columns:1fr
    }

    .contact-item {
        flex-direction:row;
        text-align:left
    }

    .contact-form-box {
        padding:25px 20px
    }

    .form-row {
        grid-template-columns:1fr;
        gap:20px
    }

    .contact-submit-btn {
        width:100%;
        justify-content:center
    }

    .footer {
        width:calc(100% - 28px);
        margin:16px 14px 0;
        padding:18px 16px 10px;
        border-radius:14px 14px 0 0
    }

    .footer-container {
        grid-template-columns:1fr 1fr;
        gap:14px 12px;
        padding-bottom:14px
    }

    .footer-brand h3 {
        font-size:21px;
        margin-bottom:5px
    }

    .footer-brand>p {
        font-size:9.5px;
        line-height:1.45;
        margin-bottom:8px
    }

    .footer-column h4 {
        font-size:11px;
        margin-bottom:7px
    }

    .footer-column a,.footer-contact p {
        font-size:10px;
        margin-bottom:4px
    }

    .footer-social {
        gap:6px
    }

    .footer-social a {
        width:28px;
        height:28px
    }

    .footer-bottom {
        padding-top:10px;
        font-size:9px
    }

    /* Keep footer compact in Inspect / tablet width */
    .footer-brand,.footer-contact {
        grid-column:span 1
    }

    .footer-bottom {
        align-items:flex-start;
        flex-direction:column;
        gap:8px
    }

    .notification {
        top:75px;
        right:18px;
        left:18px;
        text-align:center
    }

}

/* 576px */
@media(max-width:375px) {

    .mobile-navbar {
        height:44px;
        padding:0 10px;
    }

    .mobile-navbar > :first-child {
        width:36px;
        height:36px;
        flex-basis:36px;
    }

    .top-header {
        top:44px;
        min-height:68px;
        padding:10px 9px;
        gap:5px;
    }

    .top-header h2 {
        font-size:14px;
        line-height:1.15;
    }

    .header-actions {
        gap:4px;
    }

    .search-box {
        width:92px;
        height:34px;
        padding:0 7px;
        gap:5px;
    }

    .search-box input {
        font-size:9px;
    }

    .header-icon {
        width:31px;
        height:31px;
        flex-basis:31px;
    }

    .home-page,.shop-page,.inspiration-page {
        padding-top:122px;
    }

}

@media(max-width:576px) {

    .hero-image-content {
        min-height:460px
    }

    .hero-text {
        padding:30px 20px
    }

    .hero-text h1 {
        font-size:38px
    }

    .category-image {
        height:240px
    }

    .shop-product-image {
        height:240px
    }

    .contact-item {
        padding:18px
    }

    .contact-form-box {
        padding:22px 18px
    }

    .footer {
        padding:20px 18px 12px
    }

    .footer-container {
        grid-template-columns:1fr;
        gap:15px;
        padding-bottom:15px
    }

    .footer-brand,.footer-contact {
        grid-column:span 1
    }

    .footer-brand h3 {
        font-size:22px;
        margin-bottom:5px
    }

    .footer-brand>p {
        font-size:10px;
        margin-bottom:10px
    }

    .footer-column h4 {
        margin-bottom:8px
    }

    .footer-column a,.footer-contact p {
        margin-bottom:5px
    }

}

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

    .top-header {
        padding:13px 14px
    }

    .top-header h2 {
        font-size:15px
    }

    .header-icon {
        width:36px;
        height:36px;
        flex-shrink:0
    }

    .home-page,.shop-page,.inspiration-page {
        padding-left:14px;
        padding-right:14px
    }

    .hero-image-content {
        min-height:500px;
        border-radius:18px
    }

    .hero-text {
        padding:30px 20px
    }

    .hero-text h1 {
        font-size:37px
    }

    .hero-badge {
        font-size:8px;
        letter-spacing:1px
    }

    .category-image {
        height:250px
    }

    .category-info {
        padding:16px
    }

    .category-info h4 {
        font-size:17px
    }

    .shop-page,.inspiration-page,.about-page,.contact-page {
        padding-left:14px;
        padding-right:14px
    }

    .shop-header h1 {
        font-size:29px
    }

    .inspiration-header h1 {
        font-size:30px
    }

    .about-page {
        padding-top:40px;
        padding-bottom:45px
    }

    .contact-page {
        padding-top:40px;
        padding-bottom:45px
    }

    .contact-header h1,.about-content h1 {
        font-size:29px
    }

    .footer {
        width:calc(100% - 28px);
        margin:18px 14px 0;
        padding:18px 16px 12px
    }

    .footer-container {
        gap:13px;
        padding-bottom:14px
    }

    .footer-brand h3 {
        font-size:21px
    }

    .footer-brand>p {
        font-size:9px;
        line-height:1.4
    }

    .footer-social a {
        width:28px;
        height:28px;
        font-size:11px
    }

    .footer-column h4 {
        font-size:11px;
        margin-bottom:6px
    }

    .footer-column a,.footer-contact p {
        font-size:9px;
        margin-bottom:4px
    }

    .footer-bottom {
        padding-top:13px
    }

}
/*about &contact top spacing*/
#aboutPage,
#contactPage{
    margin: 30px;
}
@media(max-width:767px){
    #aboutPage,
    #contactPage{
    margin: 80px;
}
}