:root {
    --primary: #C5A47E;
    --primary-dark: #AE7F4D;
    --primary-light: #E6C9A8;
    --brown: #5C3013;
    --bg-main: #F5F1EB;
    --bg-light: #FAFAFA;
    --bg-card: #F9F7F4;
    --white: #FFFFFF;
    --black: #000000;
    --dark: #0F0F0F;
    --dark-light: #1A1A1A;
    --success: #0F9D8A;
    --danger: #FF4D4D;
    --info: #185FA5;
    --info-bg: #E6F1FB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
}

h1,
h2,
h3 {
    font-family: 'Roboto Serif', serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: var(--brown);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.12s linear, box-shadow 0.12s linear;
}

.navbar .nav-links a,
.navbar .nav-icons i,
.navbar .search-box input,
.navbar .search-box i {
    color: var(--primary-dark);
}

.navbar .search-box {
    border: 1px solid var(--primary-dark);
}

.navbar .search-box input::placeholder {
    color: rgba(174, 127, 77, 0.7);
}

.navbar .wishlist-count,
.navbar .cart-count {
    background: rgba(197, 164, 126, 0.15);
    border: 1.5px solid rgba(197, 164, 126, 0.3);
    color: var(--primary);
}

.navbar .nav-avatar,
.navbar .nav-avatar-img {
    background: rgba(197, 164, 126, 0.15);
    border: 1.5px solid rgba(197, 164, 126, 0.4);
    color: var(--primary);
}

.transparent-nav .navbar {
    background: transparent;
}

/* INITIAL TRANSPARENT STATE */
.transparent-nav .navbar .nav-links a,
.transparent-nav .navbar .nav-icons i,
.transparent-nav .navbar .search-box input,
.transparent-nav .navbar .search-box i {
    color: white;
}

.transparent-nav .navbar .nav-links a::after {
    background: var(--white);
}

.transparent-nav .navbar .nav-links a.active::after {
    background: var(--white);
}

.transparent-nav .navbar .search-box {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.transparent-nav .navbar .search-box input::placeholder {
    color: var(--white);
}

.transparent-nav .navbar .wishlist-count,
.transparent-nav .navbar .cart-count {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.transparent-nav .navbar .nav-avatar,
.transparent-nav .navbar .nav-avatar-img {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* HOVER + SCROLL → SAME AS DEFAULT */
.transparent-nav .navbar:hover,
.transparent-nav .navbar.scrolled {
    background: var(--brown);
    backdrop-filter: blur(8px);
}

.transparent-nav .navbar.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.transparent-nav .navbar:hover .nav-links a,
.transparent-nav .navbar.scrolled .nav-links a,
.transparent-nav .navbar:hover .nav-icons i,
.transparent-nav .navbar.scrolled .nav-icons i,
.transparent-nav .navbar:hover .search-box input,
.transparent-nav .navbar.scrolled .search-box input,
.transparent-nav .navbar:hover .search-box i,
.transparent-nav .navbar.scrolled .search-box i {
    color: var(--primary-dark);
}

.transparent-nav .navbar:hover .nav-links a::after,
.transparent-nav .navbar.scrolled .nav-links a::after {
    background: var(--primary);
}

.transparent-nav .navbar:hover .nav-links a.active::after,
.transparent-nav .navbar.scrolled .nav-links a.active::after {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.transparent-nav .navbar:hover .search-box,
.transparent-nav .navbar.scrolled .search-box {
    border: 1px solid var(--primary-dark);
}

.transparent-nav .navbar:hover .search-box input::placeholder,
.transparent-nav .navbar.scrolled .search-box input::placeholder {
    color: rgba(174, 127, 77, 0.7);
}

.transparent-nav .navbar:hover .wishlist-count,
.transparent-nav .navbar.scrolled .wishlist-count,
.transparent-nav .navbar:hover .cart-count,
.transparent-nav .navbar.scrolled .cart-count {
    background: rgba(197, 164, 126, 0.15);
    border: 1.5px solid rgba(197, 164, 126, 0.3);
    color: var(--primary);
}

.transparent-nav .navbar:hover .nav-avatar,
.transparent-nav .navbar.scrolled .nav-avatar,
.transparent-nav .navbar:hover .nav-avatar-img,
.transparent-nav .navbar.scrolled .nav-avatar-img {

    background: rgba(197, 164, 126, 0.15);
    border: 1.5px solid rgba(197, 164, 126, 0.4);
    color: var(--primary);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

.nav-links a::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.search-box {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 30px;
    transition: 0.3s;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    padding: 5px;
    font-size: 14px;
    width: 150px;
}

.search-box i {
    cursor: pointer;
}

.search-box:hover {
    border-color: var(--primary);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons i {
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-icons i:hover {
    color: var(--primary);
}

/* ===== NAVBAR USER ===== */
.navbar-user {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Avatar circle */
.nav-avatar,
.nav-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(197, 164, 126, 0.15);
    border: 1.5px solid rgba(197, 164, 126, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
    transition: all .25s ease;
}

.nav-avatar-img {
    object-fit: cover;
}

/* hover effect */
.navbar-user:hover .nav-avatar,
.navbar-user:hover .nav-avatar-img {
    transform: scale(1.05);
    transition: all .25s ease;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 0;
    width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

/* show dropdown on hover */
.navbar-user:hover .dropdown-menu {
    display: flex;
}

/* user info */
.user-info {
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
}

.user-role {
    font-size: 11px;
    color: #888;
}

/* dropdown links */
.dropdown-menu a,
.logout-btn {
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    border-radius: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
}

.dropdown-menu a:hover,
.logout-btn:hover {
    background: #f5f1eb;
}

.cart-icon,
.wishlist-icon {
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wishlist-icon i,
.cart-icon i {
    position: relative;
    z-index: 2;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -9px;
    right: -11px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    border-radius: 999px;
    z-index: 1;
    transition: all .25s ease;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 992px) {

    /* NAV LINKS DROPDOWN */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        /* DEFAULT (same as navbar theme) */
        background: rgba(92, 48, 19, 0.98);
        backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;

        padding: 30px 0;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }

    /* TRANSPARENT PAGE → MENU STYLE */
    .transparent-nav .nav-links {
        background: rgba(92, 48, 19, 0.98);
        /* SAME as final navbar */
    }

    /* ACTIVE MENU */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* LINKS */
    .nav-links a {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.5px;
        position: relative;

        color: var(--primary-dark);

        opacity: 0;
        transform: translateY(10px);
    }

    /* Divider line */
    .nav-links a::before {
        content: "";
        position: absolute;
        width: 40px;
        height: 1px;
        background: var(--primary);
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.4;
    }

    /* Animation */
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.4s ease;
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.5s;
    }

    /* HAMBURGER */
    .hamburger {
        display: block;
        font-size: 24px;
        cursor: pointer;
        transition: 0.3s;
        color: inherit;
        /* inherits white or gold */
    }

    .hamburger:hover {
        transform: scale(1.1);
        color: var(--primary);
    }

    /* SEARCH HIDE */
    .search-box {
        display: none;
    }
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 576px) {

    .nav-icons {
        gap: 12px;
    }

    .logo img {
        height: 50px;
    }

    .navbar {
        padding: 15px 5%;
    }
}

.section {
    padding: clamp(30px, 4vw, 60px) 6%;
}

section h2 {
    text-align: center;
    margin: 10px 0;
    font-size: clamp(22px, 4vw, 32px);
}

/* FLASH */
.flash {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.flash-success {
    background: var(--success-bg);
    border: 1px solid rgba(15, 157, 138, .25);
    color: var(--success)
}

.flash-error {
    background: var(--danger-bg);
    border: 1px solid rgba(163, 45, 45, .25);
    color: var(--danger)
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--brown);
    color: var(--primary);
    padding: 11px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: all .3s;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hero {
    height: 90vh;
    background: url('../images/herosection/hero-banner.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    padding-top: 40px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(26px, 5vw, 50px);
}

.hero p {
    font-size: clamp(14px, 2vw, 18px);
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.trust {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    background: var(--black);
}

.trust-item {
    flex: 1 1 15%;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    transition: 0.3s;
}

.trust-item i {
    font-size: 18px;
}

.trust-item:nth-child(1) {
    color: #E6C79C;
}

.trust-item:nth-child(2) {
    color: #A8C1A0;
}

.trust-item:nth-child(3) {
    color: #9FBFD4;
}

.trust-item:nth-child(4) {
    color: #F0D3A5;
}

.trust-item:nth-child(5) {
    color: #AAB8C6;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.categories h2 {
    text-align: center;
    margin-bottom: 10px;
}

.categories p {
    text-align: center;
    margin-bottom: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    justify-items: center;
}

.category-card {
    text-align: center;
    cursor: pointer;
}

.category-img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
}

.category-img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.category-card p {
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
}

.category-card:hover .category-img {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.products h2 {
    text-align: center;
    margin-bottom: 10px;
}

.products p {
    text-align: center;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    gap: 25px;
    padding-bottom: 10px;
    grid-template-columns: repeat(4, 1fr);
}

.product-grid:has(.product-card:nth-child(3):last-child),
.product-grid:has(.product-card:nth-child(2):last-child),
.product-grid:has(.product-card:nth-child(1):last-child) {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.product-grid:has(.product-card:nth-child(3):last-child) .product-card,
.product-grid:has(.product-card:nth-child(2):last-child) .product-card,
.product-grid:has(.product-card:nth-child(1):last-child) .product-card {
    width: 250px;
    flex: 0 0 250px;
}

.product-card {
    background: var(--white);
    border-radius: 14px;
    padding: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    position: relative;
}

.product-card img {
    width: 100%;
    height: clamp(140px, 20vw, 200px);
    object-fit: cover;
    border-radius: 12px;
}

.product-card h3 {
    margin: 10px 0 5px;
    font-size: clamp(13px, 2vw, 15px);
}

.product-card p {
    font-size: clamp(12px, 2vw, 14px);
    color: #777;
}

.wishlist {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--white);
    padding: 6px 10px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 10px 5px;
}

.product-info .category {
    font-size: 12px;
    color: #888;
}

.product-info h3 {
    font-size: 14px;
    margin: 5px 0;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.price .current {
    font-weight: bold;
}

.price .old {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.price .discount {
    background: #0f9d8a;
    color: var(--white);
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 6px;
}

.add-cart {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.add-cart:hover {
    background: #000;
    color: var(--white);
}

.explore {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    color: #000;
}

.explore:hover {
    background: #000;
    color: var(--white);
}

.product-card.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.craft {
    background: linear-gradient(135deg, var(--bg-light), #f3eee7);
    width: 85%;
    margin: 30px auto;
    padding: 40px 40px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.craft:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.craft-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.craft h2 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 15px auto 25px;
}

.craft p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.offer {
    background: #000;
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* ═══════════════════════════════════════════
   TABLET — 768px to 1200px
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 30px 5%;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-item {
        flex: 1 1 30%;
        min-width: 120px;
        justify-content: center;
        text-align: center;
    }

    .craft {
        width: 92%;
        padding: 30px 24px;
    }

    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 14px;
    }

    .category-img {
        width: 120px;
        height: 120px;
    }
}

/* ═══════════════════════════════════════════
   TABLET PORTRAIT — up to 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: clamp(22px, 6vw, 34px);
    }

    .hero p {
        font-size: 14px;
    }

    .trust {
        gap: 12px 8px;
        padding: 18px 16px;
    }

    .trust-item {
        flex: 1 1 40%;
        min-width: 130px;
        justify-content: center;
        text-align: center;
        font-size: 13px;
    }

    .trust-item i {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }

    .category-img {
        width: 100px;
        height: 100px;
        border-radius: 14px;
    }

    .category-card p {
        font-size: 12px;
    }

    .craft {
        width: 95%;
        padding: 28px 20px;
    }

    .craft h2 {
        font-size: 24px;
    }

    .craft p {
        font-size: 14px;
    }

    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 16px 0;
    }

    .offer {
        padding: 22px 16px;
        font-size: 15px;
    }
}

/* ═══════════════════════════════════════════
   MOBILE — up to 600px
═══════════════════════════════════════════ */
@media (max-width: 600px) {
    .section {
        padding: 20px 14px;
    }

    .hero {
        height: 60vh;
        padding: 0 16px;
    }

    .hero h1 {
        font-size: clamp(20px, 7vw, 28px);
        line-height: 1.3;
    }

    .btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .trust {
        gap: 10px;
        padding: 16px 12px;
    }

    .trust-item {
        flex: 1 1 42%;
        font-size: 12px;
        gap: 7px;
    }

    /* hide 5th trust item on very small screens to keep 2×2 grid clean */
    .trust-item:nth-child(5) {
        flex: 1 1 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        padding: 9px;
    }

    .product-card img {
        height: clamp(120px, 38vw, 160px);
        border-radius: 10px;
    }

    .product-info h3 {
        font-size: 12.5px;
    }

    .product-info .category {
        font-size: 11px;
    }

    .price .current {
        font-size: 13px;
    }

    .price .old {
        font-size: 11px;
    }

    .price .discount {
        font-size: 10px;
        padding: 2px 5px;
    }

    .add-cart {
        font-size: 12px;
        padding: 8px;
        margin-top: 8px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .category-img {
        width: 86px;
        height: 86px;
        border-radius: 12px;
    }

    .category-card p {
        font-size: 11px;
        margin-top: 6px;
    }

    .craft {
        width: 100%;
        margin: 20px auto;
        padding: 22px 16px;
        border-radius: 14px;
    }

    .craft h2 {
        font-size: 20px;
    }

    .craft p {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .offer {
        padding: 18px 14px;
        font-size: 14px;
    }

    .offer h2 {
        font-size: 18px;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 10px 0;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-card p {
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════════
   SMALL MOBILE — up to 400px
═══════════════════════════════════════════ */
@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card img {
        height: 120px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .category-img {
        width: 76px;
        height: 76px;
    }

    .trust-item {
        flex: 1 1 40%;
    }

    .hero {
        height: 55vh;
    }

    .hero h1 {
        font-size: 19px;
    }
}

@media (max-width: 350px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.shop-hero {
    height: 60vh;
    background: url('../images/shop/shop.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.shop-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.6));
}

.shop-hero-content {
    position: relative;
    padding-top: 40px;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.shop-hero h1 {
    font-size: clamp(28px, 6vw, 48px);
}

.shop-hero p {
    margin-top: 10px;
    font-size: clamp(14px, 3vw, 18px);
}

.shop-products {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-card);
}

.shop-products h2 {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.filter-buttons button {
    border: none;
    background: #eee;
    padding: 10px;
    margin: 0 5px 25px 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    background: var(--primary);
    color: var(--white);
}

.subfilter-buttons {
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

.subfilter-buttons.show {
    display: block;
}

.subfilter-buttons button {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary-dark);
    padding: 7px 16px;
    margin: 0 6px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.subfilter-buttons button.active,
.subfilter-buttons button:hover {
    background: var(--primary);
    color: var(--white);
}

.no-products-msg {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    display: none;
    width: 100%;
}

.no-products-msg.show {
    display: block;
}

.no-products-msg i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 16px;
    display: block;
}

.product-img-placeholder {
    width: 100%;
    height: clamp(140px, 20vw, 200px);
    border-radius: 12px;
    background: #f0ece4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-placeholder i {
    font-size: 32px;
    color: var(--primary);
}

.set-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    background: var(--info-bg);
    color: var(--info);
    display: flex;
    align-items: center;
    gap: 4px;
}

.set-badge i {
    font-size: 9px;
}

.royal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff8dc, #f7d774);
    color: #8b5e00;
    border: 1px solid #e6c25b;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.18);
    backdrop-filter: blur(4px);
}

.royal-badge i {
    font-size: 10px;
    color: #c99700;
}

.royal-badge:hover {
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.shop-info {
    text-align: center;
    background: var(--bg-main);
    padding: 60px 20px;
    z-index: 2;
}

.shop-info h2 {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    max-width: 1200px;
    margin: 0 auto;

    justify-items: center;
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: 14px;
    transition: all 0.3s ease;

    width: 100%;
    max-width: 320px;
    height: 180px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.value-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.value-card p {
    font-size: 14px;
    color: #666;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.shop-cta {
    padding: 70px 20px;
    text-align: center;
    background: var(--white);
}

.shop-cta h2 {
    font-size: clamp(24px, 5vw, 34px);
}

.shop-cta p {
    font-size: clamp(14px, 3vw, 16px);
    margin: 12px 0 25px;
    color: #555;
}

.shop-cta .btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    transition: 0.3s;
}

.shop-cta .btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .shop-hero {
        height: 50vh;
    }

    .shop-products {
        padding: 50px 16px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .filter-buttons button {
        padding: 8px 14px;
        font-size: 13px;
        margin-bottom: 18px;
    }

    .subfilter-buttons button {
        padding: 6px 13px;
        font-size: 12px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .value-card {
        height: auto;
        min-height: 140px;
        padding: 20px 16px;
    }

    .shop-info {
        padding: 44px 16px;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        height: 45vh;
    }

    .shop-hero-content {
        padding: 0 16px;
    }

    .shop-products {
        padding: 40px 14px;
    }

    .shop-products h2 {
        margin-bottom: 20px;
        text-align: center;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .filter-buttons button {
        padding: 8px 14px;
        font-size: 12.5px;
        margin-bottom: 0;
        border-radius: 20px;
    }

    .subfilter-buttons {
        margin-bottom: 20px;
    }

    .subfilter-buttons button {
        padding: 6px 12px;
        font-size: 12px;
        margin: 0 4px 8px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img,
    .product-img-placeholder {
        height: clamp(130px, 36vw, 180px);
        border-radius: 10px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .product-info .category {
        font-size: 11px;
    }

    .price .current { font-size: 13px; }
    .price .old     { font-size: 11px; }
    .price .discount { font-size: 10px; padding: 2px 5px; }

    .add-cart {
        font-size: 12px;
        padding: 8px;
        margin-top: 8px;
    }

    /* Badges shrink so they don't cover product images */
    .set-badge, .royal-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .royal-badge {
        /* hide text, show icon only on small tablets */
        font-size: 10px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .value-card {
        padding: 16px 12px;
        min-height: 120px;
    }

    .value-card h3 {
        font-size: 15px;
    }

    .value-card p {
        font-size: 12.5px;
    }

    .shop-info {
        padding: 36px 14px;
    }

    .shop-info h2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .shop-hero {
        height: 40vh;
    }

    .shop-hero h1 {
        font-size: clamp(22px, 7vw, 30px);
    }

    .shop-hero p {
        font-size: 13px;
    }

    .shop-products {
        padding: 30px 12px;
    }

    .filter-buttons {
        gap: 6px;
    }

    .filter-buttons button {
        padding: 7px 12px;
        font-size: 12px;
    }

    .subfilter-buttons button {
        padding: 5px 10px;
        font-size: 11.5px;
        margin: 0 3px 7px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        padding: 8px;
    }

    .product-card img,
    .product-img-placeholder {
        height: clamp(120px, 40vw, 160px);
        border-radius: 9px;
    }

    .product-info {
        padding: 8px 4px;
    }

    .product-info h3 {
        font-size: 12.5px;
        line-height: 1.3;
    }

    .price {
        flex-wrap: wrap;
        gap: 4px;
        margin-top: 4px;
    }

    .price .current { font-size: 13px; }
    .price .old     { font-size: 11px; }
    .price .discount {
        font-size: 9.5px;
        padding: 2px 5px;
    }

    .add-cart {
        font-size: 11.5px;
        padding: 7px;
        margin-top: 7px;
        border-radius: 7px;
    }

    .royal-badge .royal-text { display: none; }

    .set-badge { font-size: 9.5px; padding: 2px 7px; }
    .royal-badge { padding: 3px 7px; font-size: 9.5px; }

    .wishlist {
        width: 28px;
        height: 28px;
        font-size: 12px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
        gap: 12px;
    }

    .value-card {
        height: auto;
        padding: 18px 16px;
        max-width: 100%;
    }

    .shop-info {
        padding: 28px 12px;
    }

    .no-products-msg {
        padding: 40px 16px;
    }

    .no-products-msg i {
        font-size: 36px;
    }
}

@media (max-width: 400px) {
    .shop-hero {
        height: 35vh;
    }

    .filter-buttons button {
        padding: 6px 10px;
        font-size: 11.5px;
    }

    .product-grid {
        gap: 8px;
    }

    .product-card img,
    .product-img-placeholder {
        height: 120px;
    }

    .product-info h3 {
        font-size: 11.5px;
    }

    .values-grid {
        max-width: 280px;
    }
}

.collections-hero {
    height: 60vh;
    background: url('../images/collections/collectionss.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.collections-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.6));
}

.collections-hero-content {
    position: relative;
    padding-top: 40px;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.collections-hero h1 {
    font-size: clamp(28px, 6vw, 48px);
}

.collections-hero p {
    margin-top: 10px;
    font-size: clamp(14px, 3vw, 18px);
}


.collections-section {
    text-align: center;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-text p {
    color: #666;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.8;
}

.about-text p.collection-highlight-text {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin: 20px 0;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.collection-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.12);
}

.collection-card .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2),
            transparent);
    color: var(--white);
    transition: 0.4s ease;
}

.collection-card h3 {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.collection-card p {
    font-size: 14px;
    opacity: 0.85;
}

.collection-details .btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    transition: 0.3s;
}

.collection-details .btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--white);
    color: #000;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.collection-products {
    text-align: center;
    background: var(--bg-card);
}

.collection-story {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-content {
    max-width: 800px;
    text-align: center;
}

.story-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 12px auto 0;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.collection-info {
    text-align: center;
    background: var(--bg-card);
    padding: 60px 20px;
    z-index: 2;
}

.collection-info h2 {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 30px;
}


.collection-cta {
    padding: 70px 20px;
    text-align: center;
    background: var(--white);
}

.collection-cta h2 {
    font-size: clamp(24px, 5vw, 34px);
}

.collection-cta p {
    font-size: clamp(14px, 3vw, 16px);
    margin: 12px 0 25px;
    color: #555;
}

.collection-cta .btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    transition: 0.3s;
}

.collection-cta .btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .collection-card img {
        height: 320px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .story-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 992px) {
    .collections-hero {
        height: 50vh;
    }

    .collections-hero-content {
        padding: 0 20px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 30px;
    }

    .collection-card img {
        height: 280px;
    }

    /* about-grid layout — side by side → stacked */
    .about-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-grid.reverse {
        flex-direction: column;
    }

    .about-text {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-image img {
        width: 100%;
        max-width: 520px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* product grid on collections page */
    .collection-products .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .value-card {
        height: auto;
        min-height: 130px;
        padding: 18px 14px;
    }

    .collection-story {
        padding: 60px 20px;
    }

    .story-content h2 {
        font-size: 30px;
    }

    .story-content p {
        font-size: 15px;
    }

    .collection-info {
        padding: 44px 16px;
    }

    .collection-cta {
        padding: 50px 16px;
    }
}

@media (max-width: 768px) {
    .collections-hero {
        height: 44vh;
    }

    .collections-hero h1 {
        font-size: clamp(24px, 7vw, 36px);
    }

    .collections-hero p {
        font-size: 14px;
        margin-top: 8px;
    }

    .collections-section {
        padding: 30px 14px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .collection-card img {
        height: 260px;
    }

    .collection-card:hover {
        transform: none; /* disable lift on touch devices */
    }

    .collection-card h3 {
        font-size: 19px;
    }

    /* about section */
    .about-grid {
        gap: 24px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-text p.collection-highlight-text {
        font-size: 15px;
    }

    .about-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    /* product grids */
    .collection-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .collection-products .product-card img {
        height: clamp(130px, 36vw, 180px);
    }

    .collection-products h2 {
        font-size: clamp(20px, 5vw, 26px);
        margin-bottom: 18px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .value-card {
        padding: 16px 10px;
        min-height: 110px;
    }

    .value-card h3 { font-size: 14px; }
    .value-card p  { font-size: 12px; }

    .collection-story {
        padding: 44px 14px;
    }

    .story-content h2 {
        font-size: 26px;
    }

    .story-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .collection-info {
        padding: 36px 14px;
    }

    .collection-info h2 {
        margin-bottom: 20px;
    }

    .collection-cta {
        padding: 40px 14px;
    }

    .collection-cta h2 {
        font-size: clamp(20px, 6vw, 28px);
    }

    .collection-cta p {
        font-size: 14px;
        margin: 10px 0 20px;
    }
}

@media (max-width: 600px) {
    .collections-hero {
        height: 38vh;
    }

    .collections-hero h1 {
        font-size: clamp(20px, 8vw, 28px);
    }

    .collections-hero p {
        font-size: 13px;
    }

    .collection-card img {
        height: 220px;
    }

    .collection-card .overlay {
        padding: 18px;
    }

    .collection-card h3 {
        font-size: 17px;
    }

    .collection-card p {
        font-size: 12.5px;
    }

    .btn-outline {
        padding: 7px 14px;
        font-size: 12px;
        margin-top: 8px;
    }

    /* about section */
    .about-grid {
        gap: 20px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.65;
    }

    .about-text p.collection-highlight-text {
        font-size: 13px;
        letter-spacing: 0.5px;
        margin: 14px 0;
    }

    .collection-details .btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .collection-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .collection-products .product-card {
        padding: 8px;
    }

    .collection-products .product-card img {
        height: clamp(110px, 38vw, 150px);
        border-radius: 10px;
    }

    .collection-products .product-info h3 {
        font-size: 12.5px;
    }

    .collection-products .product-info .category {
        font-size: 11px;
    }

    .collection-products .explore {
        font-size: 12px;
        padding: 7px;
        margin-top: 7px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 10px;
    }

    .value-card {
        max-width: 100%;
        padding: 16px;
    }

    .value-card h3 { font-size: 15px; }
    .value-card p  { font-size: 13px; }

    .collection-story {
        padding: 36px 12px;
    }

    .story-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .story-content p {
        font-size: 13.5px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .collection-info {
        padding: 28px 12px;
    }

    .collection-cta {
        padding: 32px 12px;
    }

    .collection-cta h2 {
        font-size: clamp(18px, 6vw, 24px);
    }

    .collection-cta p {
        font-size: 13px;
        margin: 8px 0 18px;
    }
}

@media (max-width: 400px) {
    .collections-hero {
        height: 34vh;
    }

    .collection-card img {
        height: 190px;
    }

    .collections-grid {
        gap: 12px;
    }

    .collection-products .product-grid {
        gap: 8px;
    }

    .collection-products .product-card img {
        height: 110px;
    }

    .story-content h2 {
        font-size: 20px;
    }

    .values-grid {
        max-width: 280px;
    }

    .about-text h2 {
        font-size: 20px;
    }
}

.about-hero {
    height: 60vh;
    background: url('../images/about/aboutus.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.6));
}

.about-hero-content {
    position: relative;
    padding-top: 40px;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.about-hero h1 {
    font-size: 48px;
}

.about-hero p {
    margin-top: 10px;
    font-size: 18px;
}

.about-sections {
    padding: 100px 8%;
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.about-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 500px;
    margin: auto;
    padding: 10px;
}

.about-text,
.about-image {
    flex: 1;
}

.about-roots {
    text-align: center;
}

.about-essence {
    background: var(--white);
}

.about-craft {
    background: linear-gradient(to right, var(--bg-light), #f5f5f5);
}

.about-roots {
    background: var(--white);
}

.about-promise {
    background: linear-gradient(to right, var(--bg-light), #f5f5f5);
}

.about-craft .about-image {
    transform: translateY(30px);
}

.about-roots .about-image {
    transform: translateY(-30px);
}

.about-essence .about-image {
    transform: translateY(30px);
}

.about-promise .about-image {
    transform: translateY(-30px);
}

.about-image {
    position: relative;
    z-index: 1;
    transform: translateY(0);
    display: inline-block;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    background: var(--primary);
    top: -20px;
    left: -20px;
    z-index: 0;
    border-radius: 12px;
    opacity: 0.4;
}

.about-image::after {
    content: '';
    position: absolute;

    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);

    width: 75%;
    height: 15px;

    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.05) 70%,
            rgba(0, 0, 0, 0) 100%);

    filter: blur(6px);
    z-index: 0;
}

.about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.04);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.about-values {
    text-align: center;
}

.about-cta {
    text-align: center;
    background: var(--bg-light);
}

.about-cta .btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    transition: 0.3s;
}

.about-cta .btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.about-cta p {
    margin: 10px 0 20px;
}

@media (max-width: 992px) {

    .about-hero {
        height: 50vh;
        padding: 20px;
    }

    .center-text {
        font-size: 15px;
        padding: 0 10px;
    }

}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        gap: 30px;
    }

    .about-sections {
        height: auto;
        padding: 60px 20px;
    }

    .about-image img {
        height: 250px;
    }
}

@media (max-width: 576px) {

    .about-hero {
        height: 45vh;
    }

    .about-hero-content {
        padding: 0 15px;
    }

    .about-craft {
        padding: 60px 15px;
    }

    .about-roots {
        padding: 60px 15px;
    }

    .center-text {
        font-size: 14px;
        line-height: 1.7;
    }

}

.contact-hero {
    height: 60vh;
    background: url('../images/contact/contact-heroo.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.6));
}

.contact-hero-content {
    position: relative;
    padding-top: 40px;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 48px;
}

.contact-hero p {
    margin-top: 10px;
    font-size: 18px;
}

.contact-section {
    background: linear-gradient(135deg, #f8f5f0, #f1ebe3);
}

.contact-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
}

.contact-text {
    flex: 1;
}

.contact-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.contact-text h2 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    margin: 10px 0 20px;
    color: var(--text-dark);
    text-align: left;
}

.highlight-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #444;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;

    border: 1px solid #e5e5e5;
    border-radius: 10px;
    outline: none;

    font-size: 14px;
    transition: 0.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(197, 164, 126, 0.2);
}

.contact-form-box textarea {
    height: 130px;
    resize: none;
}

.contact-form-box .btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;

    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;

    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box .btn:hover {
    background: #b8956f;
    transform: translateY(-2px);
}

.contact-info {
    text-align: center;
    background: var(--bg-light);
}

.contact-cta {
    text-align: center;
}

.contact-cta .btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    transition: 0.3s;
}

.contact-cta .btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-hero {
        height: 50vh;
        padding: 20px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-text h2 {
        font-size: 32px;
    }

    .contact-form-box {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 45vh;
    }

    .contact-hero-content {
        padding: 0 15px;
    }

    .contact-text h2 {
        font-size: 26px;
    }

    .contact-form-box {
        width: 100%;
        padding: 20px;
    }
}

.testimonials p {
    text-align: center;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.testimonial-card {
    width: 250px;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
}

.shipping {
    max-width: 800px;
    margin: 140px auto 60px;
    padding: 20px;
}

.shipping h1 {
    text-align: center;
    margin-bottom: 40px;
}

.shipping-box {
    background: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shipping-box h3 {
    margin-bottom: 10px;
}

.faq {
    max-width: 800px;
    margin: 140px auto 60px;
    padding: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    cursor: pointer;
    padding: 15px;
    font-weight: 500;
}

.faq-answer {
    display: none;
    padding: 10px 15px;
}

.faq-answer.active {
    display: block;
}

.footer {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: #ddd;
    padding: 60px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    align-items: center;
    padding-top: 10px;
    gap: 12px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-para {
    margin-top: 10px;
    color: #ccc;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.footer-col a {
    display: block;
    color: #ccc;
    margin: 5px 0;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--primary);
}

.newsletter-col {
    width: 100%;
    max-width: 320px;
}

.newsletter-text {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #cfcfcf;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.newsletter-form input,
.newsletter-form button {
    box-sizing: border-box;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.newsletter-note {
    display: block;
    margin-top: 10px;
    color: #999;
    font-size: 12px;
}

.newsletter-success {
    margin-bottom: 12px;
    color: #4caf50;
    font-size: 14px;
}

.newsletter-error {
    margin-bottom: 12px;
    color: #ff6b6b;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #333;
    padding-top: 15px;
}

@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 30px 20px 10px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-logo img {
        height: 50px;
    }

    .newsletter-col {
        max-width: 100%;
    }

    .footer-bottom p {
        font-size: 12px;
        padding: 0 10px;
    }
}