/* ================================
   SAFFRON & SUEDE - MAIN STYLES
   ================================ */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #8B7355;
    --secondary-color: #D4A574;
    --accent-color: #F5E6D3;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --bg-cream: #FBF8F3;
    --white: #FFFFFF;
    --gold: #C9A961;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Nunito Sans', sans-serif;
    --font-heading: 'Gilda Display', serif;
    
    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 100px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 1px;
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(rgba(251, 248, 243, 0.7), rgba(251, 248, 243, 0.7)),
            url('../images/slider.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 45px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    font-family: var(--font-primary);
}

.btn-primary:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 40px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 auto;
    font-family: var(--font-primary);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background-color: var(--bg-cream);
    padding: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-weight: 700;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
}

.section-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

/* ===== CAROUSEL SECTION ===== */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 300px;
    background-color: var(--bg-cream);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 25px;
}

.product-name {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-price {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.rating {
    color: var(--gold);
    font-size: 14px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

/* ===== SIGNATURE SECTION ===== */
.signature-section {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 0;
}

.signature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.signature-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.signature-text {
    padding: 80px 60px;
}

.signature-text .section-subtitle {
    color: var(--secondary-color);
    text-align: left;
}

.signature-text h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 30px;
    text-align: left;
}

.signature-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.signature-features {
    list-style: none;
    margin-top: 30px;
}

.signature-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    letter-spacing: 1px;
}

.signature-features li:before {
    content: "✓";
    margin-right: 15px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    background-color: var(--bg-cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.category-item {
    background-color: var(--white);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.category-item h3 {
    font-size: 15px;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-weight: 600;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background-color: var(--bg-cream);
    padding: 100px 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    padding: 40px;
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* ===== IMAGE BANNER ===== */
.image-banner {
    height: 500px;
    background: url('https://images.pexels.com/photos/4041279/pexels-photo-4041279.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    position: relative;
}

.image-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139, 115, 85, 0.3);
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: var(--white);
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--text-dark);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background-color: var(--accent-color);
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    outline: none;
    font-family: var(--font-primary);
}

.newsletter-input:focus {
    border-color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 968px) {
    .signature-content {
        grid-template-columns: 1fr;
    }

    .signature-image {
        height: 400px;
    }

    .signature-text {
        padding: 60px 30px;
    }

    .carousel-btn {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section {
        padding: 60px 0;
    }

    .product-card {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 12px;
    }
}

.category-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.category-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

/* ── WhatsApp Enquire Button on Product Cards ── */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 14px;
    padding: 10px 16px;
    background-color: #25D366;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.25s ease, transform 0.25s ease;
}
.btn-whatsapp i { font-size: 15px; }
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

/* Remove old product price & rating */
.product-price,
.rating { display: none; }

/* ═══════════════════════════════════════
   CONSUMER FAVORITES — centered 3-col grid
═══════════════════════════════════════ */
.consumer-favorites .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.consumer-favorites .product-card {
    background-color: var(--bg-cream);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consumer-favorites .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(139, 115, 85, 0.12);
}

.consumer-favorites .product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 18px;
}

.consumer-favorites .product-name {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-align: center;
}

.consumer-favorites .product-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: center;
}

.consumer-favorites .btn-whatsapp {
    width: auto;
    padding: 10px 22px;
    margin-top: auto;
    align-self: center;
}

/* ═══════════════════════════════════════
   WHATSAPP ENQUIRY SECTION
═══════════════════════════════════════ */
.newsletter-section {
    background-color: var(--accent-color);
    padding: 90px 0;
    text-align: center;
}

.newsletter-desc {
    font-size: 15px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.whatsapp-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-whatsapp-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: #25D366;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-lg i { font-size: 18px; }
.btn-whatsapp-lg:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
}
.btn-whatsapp-outline i { font-size: 16px; }
.btn-whatsapp-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.whatsapp-note {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}
.whatsapp-note i { font-size: 14px; color: var(--primary-color); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .consumer-favorites .products-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .whatsapp-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .btn-whatsapp-lg,
    .btn-whatsapp-outline { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   VALUES — Remix Icons replace emoji
═══════════════════════════════════════ */
.value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Story badge Remix Icon */
.story-badge i {
    font-size: 2.2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

/* Values – 3 col on desktop, 2 on tablet, 1 on mobile */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

@media (max-width: 968px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .values-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   AVAILABILITY SECTION
═══════════════════════════════════════ */
.availability-section { background-color: var(--bg-cream); }

.availability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.availability-card {
    background-color: var(--white);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}
.availability-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(139, 115, 85, 0.1);
}

.avail-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.availability-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.avail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #25D366;
    text-decoration: none;
    transition: var(--transition);
}
.avail-link i { font-size: 14px; }
.avail-link:hover { color: #1ebe5d; }

@media (max-width: 968px) {
    .availability-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .availability-grid { grid-template-columns: 1fr; }
}

.product-actions {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    background: rgba(61, 47, 37, .45);
    opacity: 0; transition: opacity .25s; z-index: 3;
}
.shop-product-card:hover .product-actions { opacity: 1; }

.action-btn-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: #fff;
    font-size: 13px;
    text-decoration: none; width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.action-btn-wa:hover { background: #1da851; }

.action-btn-quote {
    display: flex; align-items: center; justify-content: center;
    background: #C8963E; color: #fff;
    font-size: 13px;
    gap: 6px;
    text-decoration: none; width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.action-btn-quote:hover { background: #3D2F25; }

.action-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    transition: background .2s;
}
.action-btn-wa:hover { background: #1da851; }
.action-btn-wa svg { width: 15px; height: 15px; flex-shrink: 0; } /* ← key fix */

.action-btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #C8963E;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    transition: background .2s;
}
.action-btn-quote:hover { background: #3D2F25; }

.dev-link {
    color: var(--primary-color);
    background: linear-gradient(120deg, rgba(139,115,85,0.12), rgba(139,115,85,0.06));
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.dev-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}