
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #FFFFFF;
    --bg-alt: #FAFAFA;
    --text-main: #1C1C1C;
    --text-muted: #666666;
    --accent: #E5E5E5;
    --border: #EAEAEA;
    --primary-color: #A38F70;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 8%;
    border-bottom: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.logo {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-main);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 35px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-solid {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--text-main);
    color: var(--bg-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--text-main);
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--text-main);
}

/* Footer */
.site-footer {
    background-color: var(--bg-alt);
    padding: 80px 8% 30px 8%;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1px;
}

/* Product Cards & Carousel */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 60px 40px;
}

.product-card {
    text-align: left;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.img-wrapper {
    position: relative;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #F0F0F0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    aspect-ratio: 4/5;
}

/* SVG Logo Overlay */
.svg-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    opacity: 0.5;
    z-index: 10;
    fill: #FFFFFF;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    pointer-events: none; /* Let clicks pass through to carousel */
}

/* Carousel Tracks */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

/* Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.img-wrapper:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Product Info */
.product-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
}

.product-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-specs {
    list-style: none;
    font-size: 14px;
    color: var(--text-muted);
}

.product-specs li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.product-specs li::before {
    content: '•';
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    header {
        flex-direction: column;
        padding: 20px 5%;
    }
    .logo { margin-bottom: 15px; }
    nav { flex-wrap: wrap; justify-content: center; gap: 15px; }
    nav a { margin-left: 0; margin: 0 10px; }
    .hero { height: auto; padding: 100px 20px; }
    .hero h1 { font-size: 38px !important; line-height: 1.2; }
    .hero p { font-size: 16px !important; }
    .categories, .category-section { padding: 60px 5% !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col p { margin: 0 auto 10px auto; }
    .site-footer { padding: 60px 5% 30px 5%; }
    .page-header { padding: 60px 20px !important; }
    .page-header h1 { font-size: 34px !important; }
    .category-nav { flex-wrap: wrap; gap: 15px !important; padding: 15px; top: 100px !important; }
    
    /* Ensure carousel buttons are always visible on mobile */
    .carousel-btn {
        opacity: 0.85;
    }
}
