﻿/* assets/css/style.css */
/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --accent: #0b84ff;
    --muted: #777;
    --bg: #f7f7f9;
    --card: #fff;
    --maxw: 1200px;
    --radius: 12px;
    --shadow: 0 6px 18px rgba(10,10,20,0.06);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

body {
    background: var(--bg);
    color: #222;
    line-height: 1.5
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 20px
}
/* Header */
/*.header {
    background: var(--card);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 50
}

    .header .container {
        display: flex;
        align-items: center;
        gap: 20px
    }

.logo {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
    text-decoration: none
}

nav {
    margin-left: auto
}

    nav ul {
        list-style: none;
        display: flex;
        gap: 14px;
        align-items: center
    }

    nav a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        border-radius: 8px
    }

        nav a:hover {
            background: #f0f4ff;
            color: var(--accent)
        }

.icon-cart {
    position: relative
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 2px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 12px
}*/
.main-header {
    background: linear-gradient(135deg, #f6f9f8, #ffffff);
    color: #2b3a3a;
    padding: 15px 0;
    border-bottom: 1px solid #e5e8e7;
    box-shadow: 0 3px 10px rgba(200, 210, 205, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: #b78d5b; /* Champagne Gold */
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .logo:hover {
        color: #9c7445;
        transform: scale(1.05);
    }

.nav-links {
    display: flex;
    gap: 25px;
}

    .nav-links a {
        color: #355e5e; /* Soft teal-gray text */
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        position: relative;
        transition: all 0.3s ease;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: #b78d5b; /* Champagne underline */
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #b78d5b;
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

    .search-box input {
        padding: 7px 34px 7px 12px;
        border: 1px solid #cfd9d5;
        border-radius: 20px;
        background: #ffffff;
        color: #2b3a3a;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        .search-box input:focus {
            box-shadow: 0 0 0 2px #b78d5b;
            outline: none;
        }

    .search-box i {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #8a9c97;
    }

.cart-icon {
    position: relative;
    color: #355e5e;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .cart-icon:hover {
        color: #b78d5b;
        transform: scale(1.1);
    }

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #b78d5b;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .search-box input {
        width: 150px;
    }
}


/* Hero */
.hero {
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 20px;
    align-items: center
}

    .hero .lead {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px
    }

    .hero p {
        color: var(--muted);
        margin-bottom: 18px
    }

    .hero .cta {
        display: flex;
        gap: 10px
    }

/* Cards & lists */
.grid {
    display: grid;
    gap: 20px
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.card {
    background: var(--card);
    border-radius: 12px;
    padding: 14px;
    box-shadow: var(--shadow)
}

.product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px
}

.product h4 {
    font-size: 1rem;
    margin: 10px 0
}

.product .price {
    font-weight: 700;
    color: var(--accent)
}

.btn {
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 10px
}

/* Filters */
.filters {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px
}

.input, .select {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e6e6e9;
    background: #fff
}

/* Footer */
/*.footer {
    margin-top: 40px;
    padding: 28px 0;
    color: var(--muted)
}

    .footer .cols {
        display: flex;
        gap: 24px;
        flex-wrap: wrap
    }*/
.footer {
    background: #111;
    color: #eee;
    padding: 50px 0 25px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 250px;
}

    .footer-section h4 {
        color: #fff;
        margin-bottom: 14px;
        font-size: 1.1rem;
        position: relative;
    }

        .footer-section h4::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background: #c7a64f; /* gold accent */
            margin-top: 6px;
            border-radius: 2px;
        }

    .footer-section .muted {
        color: #aaa;
        line-height: 1.6;
        font-size: 0.95rem;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin: 6px 0;
    }

    .footer-links a {
        color: #bbb;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #c7a64f;
        }

.logo-text {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.social-icons {
    margin-top: 15px;
}

    .social-icons a {
        display: inline-block;
        color: #ccc;
        font-size: 1.2rem;
        margin-right: 12px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

        .social-icons a:hover {
            color: #c7a64f;
            transform: translateY(-3px);
        }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 15px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .social-icons a {
        margin: 8px;
    }
}

/* Responsive */
@media (max-width:900px) {
    .hero {
        grid-template-columns: 1fr
    }

    .grid-4 {
        grid-template-columns: repeat(2,1fr)
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr)
    }
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card h4 {
    font-size: 1rem;
    margin: 8px 0;
}

.blog-card a {
    color: #222;
    text-decoration: none;
}

    .blog-card a:hover {
        color: var(--accent);
    }

.blog-card p.muted {
    color: var(--muted);
    font-size: 0.9rem;
}

.blog-section {
    position: relative;
    margin-top: 30px;
    overflow: hidden;
    padding: 0 40px;
}

.blog-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}

    .blog-slider::-webkit-scrollbar {
        display: none; /* Hide scrollbar in Chrome/Safari */
    }

.blog-card {
    min-width: 260px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
    padding: 10px;
    transition: transform 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-5px);
    }

    .blog-card img {
        width: 100%;
        height: 160px;
        border-radius: 8px;
        object-fit: cover;
    }

    .blog-card h4 {
        font-size: 1rem;
        margin: 10px 0 5px;
    }

    .blog-card a {
        color: #222;
        text-decoration: none;
    }

        .blog-card a:hover {
            color: var(--accent, #d4af37);
        }

    .blog-card p.muted {
        color: gray;
        font-size: 0.85rem;
    }

.slider-buttons {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slide-btn {
    pointer-events: all;
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 24px;
    padding: 8px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

    .slide-btn:hover {
        background: #eee;
    }

@media (max-width:520px) {
    nav ul {
        display: none
    }

    .container {
        padding: 14px
    }

    .product img {
        height: 150px
    }
}
.about-section {
    padding-top: 2rem;
}

.about-card {
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    .about-card p {
        margin-bottom: 1.8rem; /* more breathing space */
        font-size: 1.05rem;
        line-height: 1.8; /* airy line spacing */
        color: #444;
    }

    .about-card strong {
        color: #bfa145; /* elegant gold accent */
    }
