/* ============================================
   ARKEN USA - Custom Theme CSS
   Replicating arkenopticsusa.com design
   ============================================ */

:root {
    --color-bg: #f2f2f2;
    --color-dark: #1a1a1a;
    --color-gold: #c5a55a;
    --color-gold-hover: #d4b76a;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-heading: #000000;
    --color-muted: #999999;
    --color-sale: #8b0000;
    --color-star: #c5a55a;
    --font-main: 'Montserrat', sans-serif;
    --header-height: 60px;
    --announcement-height: 36px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-heading);
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
    background: var(--color-gold);
    text-align: center;
    padding: 8px 16px;
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
}
.announcement-bar a {
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}
.announcement-bar strong { font-weight: 700; }

/* ============ HEADER ============ */
.site-header {
    background: var(--color-dark);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}
.logo-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
}
.header-nav ul {
    display: flex;
    gap: 28px;
}
.header-nav a {
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}
.header-nav a:hover { color: var(--color-gold); }
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s;
}
.header-nav a:hover::after { width: 100%; }
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-icon {
    color: white;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}
.header-icon:hover { color: var(--color-gold); }
.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ============ SEARCH OVERLAY ============ */
.search-overlay {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 2000;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    padding: 24px;
}
.search-overlay.active { right: 0; }
.search-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    float: right;
    margin-bottom: 24px;
}
.search-overlay form {
    display: flex;
    border-bottom: 2px solid var(--color-dark);
    padding-bottom: 8px;
    clear: both;
}
.search-overlay input {
    flex: 1;
    border: none;
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
}
.search-overlay button[type="submit"] {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* ============ HERO SLIDESHOW ============ */
.hero-slideshow {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-content {
    flex: 1;
    padding: 60px 80px;
    color: white;
    z-index: 2;
}
.slide-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.slide-badge span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
}
.slide-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    color: white;
}
.slide-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    max-width: 400px;
}
.slide-image {
    flex: 1;
    height: 100%;
    position: relative;
}
.btn-cta {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 12px 32px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-cta:hover { background: var(--color-gold-hover); }
.slide-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active { background: white; }

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--color-gold);
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
}
.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-right: 1px solid rgba(0,0,0,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 28px; color: var(--color-dark); }
.trust-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}
.trust-item span {
    font-size: 11px;
    color: rgba(0,0,0,0.7);
}

/* ============ TEAM SECTION ============ */
.team-section {
    text-align: center;
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}
.team-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.team-section p {
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* ============ REVIEWS ============ */
.reviews-section {
    text-align: center;
    padding: 60px 24px 80px;
    background: white;
}
.reviews-section h2 {
    font-size: 1.4rem;
    margin-bottom: 40px;
    letter-spacing: 3px;
}
.reviews-carousel { position: relative; max-width: 700px; margin: 0 auto; }
.review {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.review.active { display: flex; }
.review-product {
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}
.review-stars { color: var(--color-star); font-size: 16px; }
.review p {
    font-style: italic;
    color: var(--color-text);
    max-width: 600px;
    line-height: 1.8;
}
.review-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-heading);
}
.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.review-prev, .review-next {
    background: none;
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}
.review-prev:hover, .review-next:hover { border-color: var(--color-dark); }
.review-dots { display: flex; gap: 8px; }
.review-dots .dot { width: 8px; height: 8px; border-color: #ccc; }
.review-dots .dot.active { background: var(--color-dark); border-color: var(--color-dark); }

/* ============ PRODUCT SERIES ============ */
.product-series {
    text-align: center;
    padding: 80px 24px;
}
.product-series h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
}
.section-subtitle {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 40px;
}
.series-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.series-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    padding: 0 40px;
}
.series-card {
    flex: 0 0 calc(25% - 18px);
    text-align: center;
    cursor: pointer;
}
.series-img {
    width: 100%;
    height: 160px;
    margin-bottom: 12px;
}
.series-card h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.series-card p {
    font-size: 12px;
    color: var(--color-muted);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.carousel-btn:hover { background: var(--color-dark); color: white; border-color: var(--color-dark); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* ============ PROMO BANNER ============ */
.promo-banner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
    border-radius: 4px;
}
.promo-image { flex: 1; min-height: 300px; }
.promo-content {
    flex: 1;
    background: var(--color-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 60px;
}
.promo-content h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}
.promo-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-dark);
    text-transform: none;
    letter-spacing: 0;
}
.promo-content .btn-cta {
    background: var(--color-dark);
    color: white;
}
.promo-content .btn-cta:hover { background: #333; }

/* ============ BEST SELLERS ============ */
.best-sellers {
    text-align: center;
    padding: 60px 24px 80px;
}
.best-sellers h2 {
    font-size: 1.4rem;
    margin-bottom: 40px;
    letter-spacing: 3px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: white;
    padding: 24px;
    text-align: center;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.product-img { height: 200px; margin-bottom: 16px; }
.product-card h3 {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    line-height: 1.5;
}
.product-rating {
    margin-bottom: 8px;
    color: var(--color-star);
    font-size: 12px;
}
.product-rating span {
    color: var(--color-muted);
    font-size: 11px;
    margin-left: 4px;
}
.product-price { margin-bottom: 16px; }
.sale-price {
    color: var(--color-sale);
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
}
.regular-price {
    color: var(--color-muted);
    text-decoration: line-through;
    font-size: 13px;
}
.btn-add-to-cart {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 10px 24px;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-add-to-cart:hover { background: var(--color-gold-hover); }

/* ============ VIDEO SECTION ============ */
.video-section {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #111 0%, #2c2c2c 50%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    height: 100%;
    padding: 40px;
}
.video-text-left, .video-text-right {
    color: white;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.8rem;
    opacity: 0.9;
}
.reticle-overlay { opacity: 0.6; }

/* ============ SPOTLIGHT ============ */
.spotlight-section {
    text-align: center;
    padding: 80px 24px;
    background: white;
}
.spotlight-section h2 {
    font-size: 1.4rem;
    margin-bottom: 40px;
    letter-spacing: 3px;
}
.spotlight-item { display: none; }
.spotlight-item.active { display: block; }
.spotlight-item p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* ============ INSTAGRAM ============ */
.instagram-section {
    text-align: center;
    padding: 60px 24px;
}
.instagram-section h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
}
.instagram-section > p {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 32px;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    max-width: 1200px;
    margin: 0 auto;
}
.instagram-item {
    aspect-ratio: 1;
    cursor: pointer;
    transition: opacity 0.3s;
}
.instagram-item:hover { opacity: 0.8; }

/* ============ HQ SECTION ============ */
.hq-section {
    text-align: center;
    padding: 60px 24px;
    background: white;
}
.hq-section h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
}
.hq-note {
    color: var(--color-muted);
    font-size: 13px;
    margin-bottom: 16px;
}
.hq-section p { font-size: 14px; margin-bottom: 8px; }
.hq-section a { color: var(--color-gold); }
.hq-map { max-width: 600px; margin: 24px auto; }
.hq-disclaimer {
    font-size: 12px;
    color: var(--color-muted);
    font-style: italic;
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
    text-align: center;
    padding: 60px 24px;
    background: var(--color-bg);
    border-top: 1px solid #e0e0e0;
}
.newsletter-section h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
}
.newsletter-section > p {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto 20px;
    gap: 0;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-right: none;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
}
.newsletter-form input:focus { border-color: var(--color-dark); }
.newsletter-form button {
    background: var(--color-dark);
    color: white;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover { background: #333; }
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s;
}
.social-icons a:hover { background: var(--color-gold); color: var(--color-dark); }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 24px 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h4 {
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.footer-about p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-address, .footer-email { font-size: 12px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px 0;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: repeat(3, 1fr); }
    .series-card { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-nav.active {
        display: flex;
        position: fixed;
        top: calc(var(--header-height) + var(--announcement-height));
        left: 0;
        width: 100%;
        background: var(--color-dark);
        padding: 24px;
        z-index: 999;
    }
    .header-nav.active ul { flex-direction: column; gap: 16px; }
    .mobile-menu-toggle { display: block; }
    .slide-content { padding: 40px 24px; }
    .slide-content h2 { font-size: 2rem; }
    .trust-bar { flex-wrap: wrap; }
    .trust-item { flex: 0 0 50%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-banner { flex-direction: column; }
    .promo-image { min-height: 200px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .video-overlay { flex-direction: column; gap: 24px; }
    .video-text-left, .video-text-right { font-size: 1.2rem; }
    .series-card { flex: 0 0 calc(50% - 12px); }
    .search-overlay { width: 100%; right: -100%; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .trust-item { flex: 0 0 100%; }
    .footer-inner { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* WP admin bar fix */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ============ WOOCOMMERCE SHOP ============ */
.arken-shop-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}
.woocommerce-breadcrumb {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 16px;
}
.woocommerce-breadcrumb a { color: var(--color-text); }
.woocommerce-breadcrumb a:hover { color: var(--color-gold); }

.woocommerce .page-title,
.woocommerce-page .page-title {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* Product Grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.woocommerce ul.products li.product {
    background: white;
    padding: 24px;
    text-align: center;
    border-radius: 4px;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    transition: box-shadow 0.3s;
}
.woocommerce ul.products li.product:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.woocommerce ul.products li.product a img {
    margin-bottom: 12px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-main);
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-heading);
    padding: 0;
    margin-bottom: 8px;
}
.woocommerce ul.products li.product .price {
    color: var(--color-sale);
    font-weight: 700;
    font-size: 16px;
}
.woocommerce ul.products li.product .price del {
    color: var(--color-muted);
    font-size: 13px;
}
.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--color-sale);
}
.woocommerce ul.products li.product .star-rating {
    margin: 0 auto 8px;
    color: var(--color-star);
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .checkout-button,
.woocommerce #payment #place_order {
    background: var(--color-gold) !important;
    color: var(--color-dark) !important;
    font-family: var(--font-main);
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 24px !important;
    transition: background 0.3s;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--color-gold-hover) !important;
    color: var(--color-dark) !important;
}

/* Sale Badge */
.woocommerce span.onsale {
    background: var(--color-sale);
    color: white;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
    min-height: auto;
    min-width: auto;
    padding: 6px 12px;
    line-height: 1;
}

/* Single Product */
.woocommerce div.product {
    max-width: 1200px;
    margin: 0 auto;
}
.woocommerce div.product .product_title {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.woocommerce div.product p.price {
    font-size: 1.4rem !important;
    color: var(--color-sale);
}
.woocommerce div.product p.price del { color: var(--color-muted); font-size: 1rem; }

/* Quantity */
.woocommerce .quantity .qty {
    font-family: var(--font-main);
    padding: 8px;
    border: 1px solid #ccc;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 40px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: var(--color-gold);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text);
}
.woocommerce div.product .woocommerce-tabs .panel {
    font-family: var(--font-main);
    line-height: 1.8;
}

/* Cart */
.woocommerce table.shop_table {
    border-collapse: collapse;
    border: none;
}
.woocommerce table.shop_table th {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.woocommerce-cart .cart-collaterals .cart_totals {
    float: right;
}

/* Messages */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--color-gold);
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--color-gold);
}

/* Responsive WooCommerce */
@media (max-width: 768px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .woocommerce ul.products { grid-template-columns: 1fr; }
}

/* Cart count badge */
.header-icon { position: relative; }
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #f9c248;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

/* Hero slider images - black and white */
