@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
   body {
    font-family: 'Jost', sans-serif;
    background: #fdf9f5;
    color: #3D2B1F;
}
}

/* ===== WRAPPER ===== */
.wrapper {
    width: 90%;
    margin: -20px auto;
}

/* ===== TOPBAR ===== */
.topbar {
    background: rgba(255, 250, 245, 1);
    height: 40px;
    line-height: 40px;
}

.tl {
    float: left;
    width: 60%;
}

.tr {
    float: right;
    width: 20%;
}

.tl ul {
    list-style: none;
}

.tl ul li {
    float: left;
    margin-right: 20px;
}

.tl ul li a {
    color: #5C4033;
    font-size: 13px;
    font-weight: 500;
}

.tl ul li a i {
    margin-right: 6px;
    color: #C9952A;
}

.tr ul {
    list-style: none;
}

.tr ul li {
    float: left;
    margin-left: 12px;
}

.tr ul li a i {
    color: #5C4033;
    font-size: 18px;
    transition: color 0.3s;
}

.tr ul li a i:hover {
    color: #C9952A;
}

.c {
    clear: both;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E8D5B7;
    height: 70px;
    line-height: 70px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: #8B5A47;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    text-shadow: 2px 2px 6px rgba(139, 90, 71, 0.3);
}

.brand:hover {
    color: #C9952A;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3D2B1F;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C9952A;
}

.nav-icons {
    display: flex;
    gap: 18px;
    font-size: 20px;
}

.nav-icons a {
    color: #6B4A36;
    transition: color 0.3s;
}

.nav-icons a:hover {
    color: #C9952A;
}
/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 80px;

    background: url("../images/webbg6.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 580px;
}

.hero-tag {
    display: inline-block;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left:  3px solid #F0D080;
    padding-left: 12px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #FFFAF5;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.hero-content h1 em {
    color: #F0D080;
	font-style: italic;
}

.hero-content p {
    font-size: 16px;
    color: #FFFAF5;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
    background: rgba(0,0,0,0.25);
    padding: 10px 16px;
    border-radius: 8px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-block;
    background: #C9952A;
    color: #FFFAF5;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #8B5A47;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 1.5px solid #3D2B1F;
    color: #3D2B1F;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #3D2B1F;
    color: #FFFAF5;
}
/* ── CATEGORIES ─────────────────────────────────── */
.categories {
    padding: 80px 0;
    background: #fdf9f5;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9e8b72;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 600;
    color: #1e1b17;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-header h2 em {
    font-style: italic;
    color: #9e8b72;
}

.section-header p {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #7a7060;
    font-weight: 300;
}

/* ── GRID ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── CARD ── */
.cat-card {
    position: relative;
    display: block;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.cat-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #d6cfc4;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-img {
    transform: scale(1.06);
}

/* Bottom gradient */
.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 11, 6, 0.65) 0%,
        rgba(15, 11, 6, 0.08) 45%,
        transparent 100%
    );
    z-index: 1;
    transition: opacity 0.4s ease;
}

.cat-card:hover::after {
    opacity: 0.85;
}

/* ── LABEL ── */
.cat-info {
    position: absolute;
    bottom: 22px;
    left: 24px;
    z-index: 2;
}

.cat-info span {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-card { height: 260px; }
}

@media (max-width: 540px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .cat-card { height: 220px; }
    .wrapper { padding: 0 16px; }
    .categories { padding: 60px 0; }
}
/* ===== FEATURED PRODUCTS ===== */
.featured {
    padding: 80px 0;
    background: #fdf9f5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #E8D5B7;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 16px 40px rgba(61, 43, 31, 0.12);
    transform: translateY(-4px);
}

.product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #C9952A;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-info {
    padding: 16px;
}

.product-cat {
    font-size: 11px;
    color: #C4856A;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #3D2B1F;
    margin-bottom: 14px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 17px;
    font-weight: 600;
    color: #8B5A47;
    font-family: 'Playfair Display', serif;
}

.btn-add {
    background: #8B5A47;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Jost', sans-serif;
}

.btn-add:hover {
    background: #C9952A;
}

.center-btn {
    text-align: center;
    margin-top: 20px;
}
/* ===== OFFER BANNER ===== */
.offer-banner {
    padding: 40px 0;
    background: #3D2B1F;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #FFFAF5;
}
* {
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
}

.offer-item i {
    font-size: 28px;
    color: #C9952A;
    flex-shrink: 0;
	padding:5px;
}

.offer-item h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.offer-item p {
    font-size: 12px;
    color: #E8D5B7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fdf9f5;
    border: 1px solid #E8D5B7;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 12px 30px rgba(61, 43, 31, 0.1);
    transform: translateY(-4px);
}

.stars {
    color: #C9952A;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 14px;
    color: #6B4A36;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #C9952A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 14px;
    color: #3D2B1F;
    font-weight: 500;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 12px;
    color: #8B7355;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B5A47, #3D2B1F);
}

.newsletter-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #FFFAF5;
    margin-bottom: 12px;
}

.newsletter-content h2 em {
    color: #C9952A;
    font-style: italic;
}

.newsletter-content p {
    font-size: 15px;
    color: #E8D5B7;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    outline: none;
    background: #FFFAF5;
    color: #3D2B1F;
}

.newsletter-form button {
    background: #C9952A;
    color: #FFFAF5;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #E8A830;
}

/* ===== FOOTER ===== */
.footer {
    background: #1e1b17;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,250,245,0.1);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #C9952A;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 13px;
    color: #8B7355;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,250,245,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8D5B7;
    font-size: 15px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #C9952A;
    color: #fff;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9952A;
    margin-bottom: 16px;
    font-family: 'Jost', sans-serif;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    font-size: 13px;
    color: #8B7355;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #C9952A;
}

.footer-contact h4 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9952A;
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 13px;
    color: #8B7355;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p i {
    color: #C9952A;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #8B7355;
}
/* ===== SHOP PAGE ===== */
.shop-hero {
    background: linear-gradient(135deg, #F5ECD7, #F2D9CE);
    padding: 60px 0;
    text-align: center;
}

.shop-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #3D2B1F;
    margin-bottom: 10px;
}

.shop-hero h1 em {
    color: #8B5A47;
    font-style: italic;
}

.shop-hero p {
    font-size: 15px;
    color: #8B7355;
}

.shop-controls {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #E8D5B7;
}

.search-bar {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto 20px;
    background: #F5ECD7;
    border: 1.5px solid #E8D5B7;
    border-radius: 30px;
    padding: 10px 20px;
    gap: 10px;
}

.search-bar i {
    color: #8B7355;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #3D2B1F;
    outline: none;
}

.search-bar input::placeholder {
    color: #8B7355;
}

.filter-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 1.5px solid #E8D5B7;
    color: #8B7355;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B5A47;
    border-color: #8B5A47;
    color: #fff;
}

.shop-products {
    padding: 60px 0;
    background: #fdf9f5;
}

/* ===== WISHLIST BUTTON ===== */
.wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.wish-btn:hover {
    background: #C9952A;
    color: #fff;
}
/* ===== ABOUT PAGE ===== */
.about-hero {
    background: linear-gradient(135deg, #F5ECD7, #F2D9CE);
    padding: 80px 0;
}

.about-hero .wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: #3D2B1F;
    line-height: 1.2;
    margin: 12px 0 20px;
}

.about-hero-content h1 em {
    color: #8B5A47;
    font-style: italic;
}

.about-hero-content p {
    font-size: 15px;
    color: #6B4A36;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 460px;
}

.about-hero-img {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61,43,31,0.2);
}

.about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STATS */
.stats-section {
    background: #3D2B1F;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #C9952A;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 13px;
    color: #E8D5B7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* VALUES */
.values-section {
    padding: 80px 0;
    background: #fdf9f5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    border: 1px solid #E8D5B7;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 12px 30px rgba(61,43,31,0.1);
    transform: translateY(-4px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #F5ECD7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #C9952A;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3D2B1F;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: #8B7355;
    line-height: 1.7;
}

/* STORY */
.story-section {
    padding: 80px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-imgs {
    position: relative;
    height: 460px;
}

.story-img-big {
    width: 55%;
    height: 99%;
    object-fit: cover;
    border-radius: 16px;
}

.story-img-small {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    height: 82%;
    object-fit: cover;
    border-radius: 16px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(61,43,31,0.15);
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #3D2B1F;
    line-height: 1.3;
    margin: 12px 0 20px;
}

.story-content h2 em {
    color: #8B5A47;
    font-style: italic;
}

.story-content p {
    font-size: 15px;
    color: #6B4A36;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* TEAM */
.team-section {
    padding: 80px 0;
    background: #fdf9f5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: #fff;
    border: 1px solid #E8D5B7;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    box-shadow: 0 12px 30px rgba(61,43,31,0.1);
    transform: translateY(-4px);
}

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9952A, #8B5A47);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3D2B1F;
    margin-bottom: 6px;
}

.team-card p {
    font-size: 12px;
    color: #C4856A;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, #F5ECD7, #F2D9CE);
    padding: 70px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: #3D2B1F;
    margin: 12px 0 16px;
}

.contact-hero h1 em {
    color: #8B5A47;
    font-style: italic;
}

.contact-hero p {
    font-size: 15px;
    color: #8B7355;
}

.contact-section {
    padding: 80px 0;
    background: #fdf9f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #3D2B1F;
    margin-bottom: 16px;
}

.contact-info h2 em {
    color: #8B5A47;
    font-style: italic;
}

.contact-info > p {
    font-size: 14px;
    color: #8B7355;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: #F5ECD7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9952A;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8B7355;
    margin-bottom: 4px;
    font-family: 'Jost', sans-serif;
}

.contact-item p {
    font-size: 14px;
    color: #3D2B1F;
    font-weight: 500;
    line-height: 1.6;
}

.contact-social {
    margin-top: 32px;
}

.contact-social h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8B7355;
    margin-bottom: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F5ECD7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5A47;
    font-size: 16px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #C9952A;
    color: #fff;
}

/* FORM */
.contact-form {
    background: #fff;
    border: 1px solid #E8D5B7;
    border-radius: 20px;
    padding: 40px;
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #3D2B1F;
    margin-bottom: 28px;
}

.contact-form h2 em {
    color: #8B5A47;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8B7355;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E8D5B7;
    border-radius: 8px;
    background: #FFFAF5;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #3D2B1F;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #C9952A;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: #8B5A47;
    color: #FFFAF5;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #C9952A;
}

/* MAP */
.map-section {
    padding: 60px 0;
    background: #fff;
}

.map-placeholder {
    background: linear-gradient(135deg, #F5ECD7, #F2D9CE);
    border-radius: 16px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #E8D5B7;
}

.map-placeholder i {
    font-size: 48px;
    color: #C9952A;
}

.map-placeholder p {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #3D2B1F;
    font-weight: 600;
}

.map-placeholder span {
    font-size: 13px;
    color: #8B7355;
}
/* ===== PRODUCT DETAIL ===== */
.breadcrumb {
    padding: 14px 0;
    background: #fff;
    border-bottom: 1px solid #E8D5B7;
    font-size: 13px;
    color: #8B7355;
}

.breadcrumb a {
    color: #8B7355;
    transition: color 0.3s;
}

.breadcrumb a:hover { color: #C9952A; }

.breadcrumb span {
    margin: 0 8px;
    color: #E8D5B7;
}

.product-detail {
    padding: 60px 0;
    background: #fdf9f5;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* IMAGES */
.pd-main-img {
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    background: #F5ECD7;
}

.pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.pd-main-img:hover img { transform: scale(1.03); }

.pd-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s;
}

.pd-thumb.active { border-color: #C9952A; }

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFO */
.pd-cat {
    font-size: 11px;
    color: #C4856A;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.pd-name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #3D2B1F;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pd-stars {
    color: #C9952A;
    font-size: 16px;
    margin-bottom: 16px;
}

.pd-stars span {
    font-size: 13px;
    color: #8B7355;
    margin-left: 8px;
}

.pd-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #8B5A47;
    margin-bottom: 20px;
}

.pd-desc {
    font-size: 14px;
    color: #6B4A36;
    line-height: 1.8;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E8D5B7;
}

/* QTY */
.pd-options { margin-bottom: 24px; }

.pd-qty label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8B7355;
    margin-bottom: 10px;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #E8D5B7;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.qty-control button {
    background: #F5ECD7;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    color: #3D2B1F;
    transition: background 0.3s;
}

.qty-control button:hover { background: #E8D5B7; }

.qty-control span {
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    color: #3D2B1F;
}

/* BTNS */
.pd-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-cart {
    flex: 1;
    background: #8B5A47;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cart:hover { background: #C9952A; }

.btn-wish-pd {
    width: 54px;
    height: 54px;
    border: 1.5px solid #E8D5B7;
    background: #fff;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wish-pd:hover {
    border-color: #C9952A;
    color: #C9952A;
}

/* FEATURES */
.pd-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #F5ECD7;
    border-radius: 12px;
}

.pd-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #6B4A36;
}

.pd-feature i { color: #C9952A; font-size: 16px; }

/* RELATED */
.related-section {
    padding: 80px 0;
    background: #fff;
}
.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.product-name a:hover {
    color: #C9952A;
}
/* ===== CART PAGE ===== */
.cart-section {
    padding: 60px 0;
    background: #fdf9f5;
    min-height: 60vh;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E8D5B7;
}

.cart-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #3D2B1F;
}

.clear-btn {
    background: none;
    border: 1px solid #C4856A;
    color: #C4856A;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s;
}

.clear-btn:hover {
    background: #C4856A;
    color: #fff;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #F5ECD7;
    align-items: center;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F5ECD7;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #3D2B1F;
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 14px;
    color: #8B7355;
    margin-bottom: 12px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #E8D5B7;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.cart-item-qty button {
    background: #F5ECD7;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 16px;
    cursor: pointer;
    color: #3D2B1F;
    transition: background 0.3s;
}

.cart-item-qty button:hover { background: #E8D5B7; }

.cart-item-qty span {
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #3D2B1F;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #8B5A47;
    margin-bottom: 10px;
}

.remove-btn {
    background: none;
    border: none;
    color: #C4856A;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
}

.remove-btn:hover { color: #8B5A47; }

/* EMPTY CART */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 64px;
    color: #E8D5B7;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #3D2B1F;
    margin-bottom: 8px;
}

.empty-cart p {
    color: #8B7355;
    margin-bottom: 24px;
}

/* ORDER SUMMARY */
.order-summary {
    background: #fff;
    border: 1px solid #E8D5B7;
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 90px;
}

.order-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #3D2B1F;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E8D5B7;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6B4A36;
}

.summary-row.discount { color: #1D9E75; }

.summary-row.total {
    font-size: 18px;
    font-weight: 600;
    color: #3D2B1F;
    font-family: 'Playfair Display', serif;
}

.summary-divider {
    border: none;
    border-top: 1px solid #E8D5B7;
    margin: 14px 0;
}

.free-delivery-msg {
    background: #E8F5E9;
    color: #1D9E75;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: center;
}

.coupon-box {
    display: flex;
    gap: 8px;
    margin: 16px 0 4px;
}

.coupon-box input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #E8D5B7;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    outline: none;
    color: #3D2B1F;
}

.coupon-box input:focus { border-color: #C9952A; }

.coupon-box button {
    background: #F5ECD7;
    border: 1.5px solid #E8D5B7;
    color: #8B5A47;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s;
}

.coupon-box button:hover {
    background: #8B5A47;
    color: #fff;
    border-color: #8B5A47;
}

.btn-checkout {
    width: 100%;
    background: #8B5A47;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: background 0.3s;
    margin-top: 16px;
    letter-spacing: 0.5px;
}

.btn-checkout:hover { background: #C9952A; }

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #8B7355;
    transition: color 0.3s;
}

.continue-shopping:hover { color: #C9952A; }
/* ===== LOGIN / SIGNUP ===== */
.auth-section {
    min-height: unset;
    display: flex;
    align-items: center;
    background: #fdf9f5;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: unset;
    width: 100%;
}

.auth-img {
    position: relative;
    overflow: hidden;
}

.auth-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,20,10,0.8), rgba(30,20,10,0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    color: #fff;
}

.auth-img-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.auth-img-overlay h2 em {
    color: #C9952A;
    font-style: italic;
}

.auth-img-overlay p {
    font-size: 15px;
    color: #E8D5B7;
}

.auth-form-wrap {
    padding: 50px 60px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-logo {
    margin-bottom: 32px;
}

.auth-tabs {
    display: flex;
    border: 1.5px solid #E8D5B7;
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 32px;
    width: fit-content;
}

.auth-tab {
    padding: 10px 28px;
    border: none;
    border-radius: 24px;
    background: none;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #8B7355;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-tab.active {
    background: #8B5A47;
    color: #fff;
}

.auth-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #3D2B1F;
    margin-bottom: 6px;
}

.auth-form h2 em {
    color: #8B5A47;
    font-style: italic;
}

.auth-sub {
    font-size: 14px;
    color: #8B7355;
    margin-bottom: 28px;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon i:first-child {
    position: absolute;
    left: 14px;
    color: #C9952A;
    font-size: 14px;
}

.input-icon input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1.5px solid #E8D5B7;
    border-radius: 8px;
    background: #FFFAF5;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #3D2B1F;
    outline: none;
    transition: border-color 0.3s;
}

.input-icon input:focus {
    border-color: #C9952A;
}

.toggle-pass {
    position: absolute !important;
    right: 14px !important;
    left: auto !important;
    cursor: pointer;
    color: #8B7355 !important;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 20px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8B7355;
    cursor: pointer;
}

.forgot-pass {
    color: #C9952A;
    font-size: 13px;
    transition: color 0.3s;
}

.forgot-pass:hover { color: #8B5A47; }

.btn-auth {
    width: 100%;
    background: #8B5A47;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: background 0.3s;
    letter-spacing: 0.5px;
}

.btn-auth:hover { background: #C9952A; }

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8D5B7;
}

.auth-divider span {
    background: #fdf9f5;
    padding: 0 12px;
    position: relative;
    font-size: 12px;
    color: #8B7355;
}

.social-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-btn {
    padding: 11px;
    border: 1.5px solid #E8D5B7;
    border-radius: 8px;
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #3D2B1F;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    border-color: #C9952A;
    color: #C9952A;
}
.btn-login {
    background: #8B5A47;
    color: #fff !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s !important;
    line-height: normal;
    align-self: center;
    display: inline-block;
    height: fit-content;
}

.btn-login:hover {
    background: #C9952A !important;
    color: #fff !important;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .wrapper { width: 95%; }
    .hero { padding: 50px 40px; }
    .hero-content h1 { font-size: 46px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    /* NAVBAR */
    .navbar { padding: 14px 20px; }
    .nav-links { display: none; }
    .brand { font-size: 20px; }

    /* HERO */
    .hero { padding: 40px 20px; min-height: 70vh; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 14px; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-outline { text-align: center; }

    /* CATEGORIES */
    .categories { padding: 50px 0; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-card { height: 200px; }

    /* PRODUCTS */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .featured { padding: 50px 0; }

    /* OFFER BANNER */
    .offer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* TESTIMONIALS */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* NEWSLETTER */
    .newsletter-form { flex-direction: column; }
    .newsletter-form input,
    .newsletter-form button { width: 100%; }

    /* FOOTER */
    .footer { padding: 40px 0 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }

    /* ABOUT */
    .about-hero .wrapper { flex-direction: column; }
    .about-hero-img { width: 100%; height: 280px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; }
    .story-imgs { height: 280px; }
    .story-img-small { display: none; }

    /* CONTACT */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* SHOP */
    .shop-hero { padding: 40px 0; }
    .shop-hero h1 { font-size: 32px; }
    .filter-bar { gap: 8px; }
    .filter-btn { padding: 6px 14px; font-size: 12px; }

    /* PRODUCT DETAIL */
    .pd-grid { grid-template-columns: 1fr; }
    .pd-main-img { height: 300px; }

    /* CART */
    .cart-grid { grid-template-columns: 1fr; }
    .cart-item { flex-wrap: wrap; }

    /* AUTH */
    .auth-container { grid-template-columns: 1fr; }
    .auth-img { display: none; }
    .auth-form-wrap { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .categories-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-thumbs { gap: 8px; }
    .pd-thumb { width: 60px; height: 60px; }
    .social-auth { grid-template-columns: 1fr; }
}

html {
    scroll-behavior: smooth;
}

/* ===== LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: #FFFAF5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-brand {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #8B5A47;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: #E8D5B7;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B5A47, #C9952A);
    border-radius: 2px;
    animation: loadingBar 1.5s ease forwards;
}

@keyframes loadingBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== NAVBAR MOBILE HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3D2B1F;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 245, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E8D5B7;
    z-index: 99;
    padding: 20px;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3D2B1F;
    border-bottom: 1px solid #F5ECD7;
    transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #C9952A;
}

/* ===== HOVER EFFECTS ===== */
.cat-card,
.product-card,
.testimonial-card,
.value-card,
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ===== BUTTON CONSISTENCY ===== */
.btn-primary,
.btn-outline,
.btn-add,
.btn-auth,
.btn-checkout,
.btn-submit,
.btn-cart {
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease !important;
}

/* ===== SPACING FIX ===== */
section + section {
    margin-top: 0;
}

/* ===== IMAGE OPTIMIZATION ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== ACTIVE NAV FIX ===== */
.nav-links a.active {
    color: #C9952A !important;
    font-weight: 600;
}

/* ===== SCROLLBAR STYLE ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #F5ECD7;
}

::-webkit-scrollbar-thumb {
    background: #8B5A47;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C9952A;
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: #C9952A;
    color: #fff;
}

/* ===== FOCUS STATES ===== */
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: 2px solid #C9952A;
    outline-offset: 2px;
}

/* ===== MOBILE NAV FIX ===== */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none !important; }
    .btn-login { display: none; }
}
body {
    overflow-x: hidden;
}

footer {
    margin-bottom: 0;
}

section:last-child,
footer:last-child {
    margin-bottom: 0;
}
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    margin-top: auto;
}
/* WISHLIST LINK */

.wishlist-link{
position:relative;
font-size:22px;
color:#3d2b1f;
text-decoration:none;
margin-right:15px;
}

#wishlistCount{
position:absolute;
top:-8px;
right:-10px;
background:#8B5A47;
color:#fff;
font-size:12px;
width:18px;
height:18px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}
.wishlist-link{
position:relative;
z-index:9999;
pointer-events:auto;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#3d2b1f;
font-size:22px;
margin-right:15px;
}
.search-box{
margin-right:20px;
}
.nav-icons{
display:flex;
align-items:center;
gap:18px;
}