:root {
    --primary-deep-green: #0D2818;
    --primary-warm-amber: #D48B28;
    --surface-off-white: #FAFBF9;
    --border: #E2E8F0;
    --text-main: #333333;
    --text-light: #666666;
    --accent: #FF5722;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(--surface-off-white); color: var(--text-main); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Custom Cursor */
@media (pointer: fine) {
    .cursor-dot, .cursor-outline {
        position: fixed;
        top: 0; left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
    }
    .cursor-dot {
        width: 8px; height: 8px;
        background-color: var(--primary-warm-amber);
    }
    .cursor-outline {
        width: 40px; height: 40px;
        border: 2px solid var(--primary-warm-amber);
        transition: width 0.2s, height 0.2s;
    }
    .cursor-hover .cursor-outline {
        width: 60px; height: 60px;
        background-color: rgba(212, 139, 40, 0.1);
    }
}

/* Top Movable Announcement Banner */
.top-ticker-bar {
    background: #060E09;
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid rgba(212, 139, 40, 0.35);
    z-index: 101;
    padding: 7px 0;
    cursor: default;
}
.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: tickerScroll 24s linear infinite;
}
.top-ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    gap: 0.6rem;
}
.ticker-badge {
    background: var(--primary-warm-amber);
    color: #000000;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ticker-highlight {
    color: var(--primary-warm-amber);
    font-weight: 700;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
header { background-color: var(--primary-deep-green); color: white; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100;}
header .logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-warm-amber); }
nav ul { display: flex; gap: 1.5rem; }
nav a:hover { color: var(--primary-warm-amber); }

/* Movable Hero Carousel */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #0D2818;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 520px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4.5rem 2rem;
    background-size: cover;
    background-position: center;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-slide-content {
    max-width: 900px;
    margin: 0 auto;
    color: white;
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active .hero-slide-content {
    transform: translateY(0);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 40, 24, 0.65);
    color: white;
    border: 1px solid rgba(212, 139, 40, 0.5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    backdrop-filter: blur(4px);
}
.slider-arrow:hover {
    background: var(--primary-warm-amber);
    color: black;
    border-color: var(--primary-warm-amber);
    transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-color 0.3s;
}
.slider-dot.active {
    background: var(--primary-warm-amber);
    width: 32px;
    border-radius: 6px;
}

/* Movable Trust Badges Ribbon */
.trust-marquee-wrapper {
    background: #0B1F13;
    padding: 1.1rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid rgba(212, 139, 40, 0.3);
    position: relative;
}
.trust-marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: trustScroll 26s linear infinite;
}
.trust-marquee-wrapper:hover .trust-marquee-track {
    animation-play-state: paused;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 1.5rem;
    color: #E2E8F0;
    font-size: 0.92rem;
    font-weight: 600;
}
.trust-pill-icon {
    font-size: 1.3rem;
}
.trust-pill-sep {
    color: var(--primary-warm-amber);
    font-size: 1.1rem;
    opacity: 0.7;
    margin-left: 1.5rem;
}
@keyframes trustScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Buttons */
.btn { padding: 0.5rem 1rem; border: none; border-radius: 4px; cursor: pointer; font-weight: 500; text-align: center; display: inline-block; }
.btn-sm { padding: 0.25rem 0.75rem; font-size: 0.875rem; }
.btn-outline { border: 1px solid var(--primary-warm-amber); color: var(--primary-warm-amber); background: transparent; }
.btn-outline:hover { background: var(--primary-warm-amber); color: white; }
.btn-accent { background: var(--primary-warm-amber); color: white; }
.btn-accent:hover { background: #b8731f; }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 2rem;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

/* Product Card */
.product-card {
    background: white; border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
    transition: box-shadow 0.3s ease; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.product-img-box {
    width: 100%; height: 240px; display: flex; align-items: center; justify-content: center;
    background: #F8FAFC; padding: 16px; overflow: hidden; border-bottom: 1px solid var(--border);
}
.product-img-box img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.35s ease; }
.product-card:hover .product-img-box img { transform: scale(1.06); }

.product-card-body { padding: 1rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-category-badge { display: inline-block; padding: 0.2rem 0.5rem; background: #eee; font-size: 0.75rem; border-radius: 12px; margin-bottom: 0.5rem; color: var(--text-light); align-self: flex-start; }
.product-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.product-desc { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; flex-grow: 1; }
.product-price-row { margin-bottom: 1rem; font-weight: bold; color: var(--primary-deep-green); }
.product-card-actions { display: flex; gap: 0.5rem; }

/* Product Details Page */
.product-details-container { display: flex; padding: 3rem 2rem; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.product-details-img { flex: 1; background: white; border: 1px solid var(--border); padding: 2rem; display: flex; align-items: center; justify-content: center; }
.product-details-img img { max-width: 100%; max-height: 500px; object-fit: contain; }
.product-details-info { flex: 1; }
.product-details-info h1 { margin-bottom: 0.5rem; color: var(--primary-deep-green); }
.product-details-info .price { font-size: 1.5rem; font-weight: bold; color: var(--primary-warm-amber); margin: 1rem 0; }
.product-details-info .desc { margin-bottom: 2rem; line-height: 1.6; }
.product-details-info .actions { display: flex; gap: 1rem; margin-bottom: 2rem; }
.specs-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.specs-table th, .specs-table td { border: 1px solid var(--border); padding: 0.75rem; text-align: left; }
.specs-table th { background: #f1f5f9; width: 30%; }

@media (max-width: 768px) { .product-details-container { flex-direction: column; } }

/* Filters & Search */
.filters-bar { padding: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; background: white; border-bottom: 1px solid var(--border); }
.search-box input { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 4px; width: 300px; }
.category-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.category-btn { padding: 0.5rem 1rem; border: 1px solid var(--border); background: white; cursor: pointer; border-radius: 4px; }
.category-btn.active { background: var(--primary-deep-green); color: white; border-color: var(--primary-deep-green); }

/* Related Products */
.related-products { padding: 2rem; max-width: 1200px; margin: 0 auto; }
.related-products h2 { margin-bottom: 1.5rem; color: var(--primary-deep-green); }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Scroll to top */
#scrollTopBtn { display: none; position: fixed; bottom: 20px; right: 20px; z-index: 99; border: none; outline: none; background-color: var(--primary-warm-amber); color: white; cursor: pointer; padding: 15px; border-radius: 50%; font-size: 18px; }
#scrollTopBtn:hover { background-color: #b8731f; }

/* Site Footer */
.site-footer a { transition: color 0.2s ease, transform 0.2s ease; }
.site-footer a:hover { color: var(--primary-warm-amber) !important; }
.site-footer ul li { margin-bottom: 2px; }