/*
Theme Name: Ozashi Classic
Theme URI: https://ozashi.in
Author: Antigravity
Author URI: https://ozashi.in
Description: A highly stable, traditional WordPress theme hardcoded for maximum performance and reliability. Does not require Elementor.
Version: 1.0.0
Text Domain: ozashi-classic
*/

/* ===== OZASHI E-COMMERCE — DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #000000;
  --primary-dark: #000000;
  --primary-light: #eef3ef;
  --accent: #f28b30;
  --accent-dark: #d97825;
  --bg: #ffffff;
  --bg-warm: #ffffff;
  --text: #1a1a1a;
  --text-light: #666;
  --white: #fff;
  --border: #e8e4de;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-full: 100px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1280px;
}

html { scroll-behavior: smooth; max-width: 100vw; overflow-x: hidden; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== SHARK TANK MARQUEE ===== */
.shark-marquee { background: #f5c518; overflow: hidden; white-space: nowrap; padding: 10px 0; border-top: 2px solid #e6b800; border-bottom: 2px solid #e6b800; }
.shark-marquee-track { display: inline-flex; animation: sharkm 18s linear infinite; }
.shark-marquee-item { display: inline-flex; align-items: center; padding: 0 32px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #000000; }
.shark-marquee-item .shark-highlight { color: #c0392b; margin: 0 6px; font-weight: 900; }
.shark-marquee-item .shark-bold { color: #1a1a1a; font-weight: 900; }
@keyframes sharkm { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== HEADER ===== */
.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: 'Outfit'; font-size: 28px; font-weight: 800; letter-spacing: 6px; color: var(--primary-dark); text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text); transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 99;
    top: 100%;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    padding: 8px 0;
}
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.dropdown-content a::after {
    display: none;
}
.dropdown-content a:hover {
    background-color: #ffffff;
    color: var(--primary);
}
.dropdown:hover .dropdown-content {
    display: block;
}

.header-icons { display: flex; align-items: center; gap: 20px; }
.header-icons button { background: none; color: var(--text); transition: var(--transition); position: relative; }
.header-icons button:hover { color: var(--primary); }
.header-icons .cart-count { position: absolute; top: -8px; right: -8px; background: var(--accent); color: var(--white); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; background: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--transition); }

/* ===== PROMO BAR ===== */
.promo-bar { background: var(--primary); text-align: center; padding: 10px 16px; color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .5px; }
.promo-bar strong { color: var(--accent); }

/* ===== HERO ===== */
.hero { background: var(--primary-light); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,0,0,.08) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(242,139,48,.06) 0%, transparent 70%); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; color: var(--primary-dark); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero p { font-size: 18px; color: var(--text-light); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); padding: 16px 40px; border-radius: var(--radius-full); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; transition: var(--transition); box-shadow: 0 8px 24px rgba(242,139,48,.3); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(242,139,48,.4); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: var(--white); padding: 14px 32px; border-radius: var(--radius-full); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--primary-dark); padding: 16px 0; overflow: hidden; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-strip-inner .item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 13px; font-weight: 500; white-space: nowrap; }
.trust-strip-inner .item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* ===== CATEGORY CARDS ===== */
.categories { padding: 44px 0; }
.categories .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card { background: var(--primary-light); border-radius: var(--radius); padding: 28px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: var(--transition); border: 1px solid transparent; }
.cat-card:hover { background: var(--white); border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cat-card h3 { font-size: 16px; font-weight: 700; color: var(--primary-dark); }
.cat-card .arrow { width: 36px; height: 36px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cat-card:hover .arrow { background: var(--accent); }

/* ===== SECTION TITLES ===== */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--primary-dark); margin-bottom: 12px; }
.section-title p { font-size: 16px; color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ===== TAB FILTERS ===== */
.tab-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 10px 28px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; border: 2px solid var(--border); background: var(--white); color: var(--text); transition: var(--transition); }
.tab-btn.active, .tab-btn:hover { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }


/* ===== PRODUCT CARDS (MINIMALIST) ===== */
.products { padding: 56px 0; }

.product-slider-wrapper { position: relative; }
.product-grid { 
    display: flex; 
    gap: 24px; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; /* Firefox */
    padding-bottom: 24px;
}
.product-grid::-webkit-scrollbar { display: none; }
.product-grid > .product-card { 
    flex: 0 0 calc(25% - 18px); 
    scroll-snap-align: start; 
}
.ps-btn {
    position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
    background: #000; color: #fff; border: none; font-size: 24px; cursor: pointer; z-index: 5;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: 0.3s;
}
.ps-btn:hover { background: #333; scale: 1.1; }
.ps-prev { left: -20px; }
.ps-next { right: -20px; }

@media (max-width: 1024px) {
    .product-grid > .product-card { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 768px) {
    .product-grid > .product-card { flex: 0 0 calc(50% - 12px); }
    .ps-prev { left: -10px; }
    .ps-next { right: -10px; }
}
@media (max-width: 480px) {
    .product-grid > .product-card { flex: 0 0 85%; }
}

.product-card { 
    background: var(--white); 
    transition: var(--transition); 
    display: flex; 
    flex-direction: column; 
    position: relative; 
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: none !important;
    box-shadow: none !important;
}
.product-card:hover { transform: none !important; border-color: transparent !important; box-shadow: none !important; }
.product-card:hover .product-img img { transform: scale(1.03); }

.product-badge { position: absolute; top: 16px; left: 16px; background: #fff; color: #000; font-size: 11px; font-weight: 700; padding: 4px 10px; z-index: 2; border: 1px solid #e5e7eb; text-transform: uppercase; }
.product-img { background: #ffffff; padding: 0; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/5; overflow: hidden; position: relative; width: 100%; }
.product-img img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); padding: 20px; }

.carousel-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.carousel-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.2); transition: 0.3s; }
.carousel-dots .dot.active { background: #000; }

.product-info { padding: 16px 0 0 0; display: flex; flex-direction: column; flex: 1; }
.product-info h3 { font-size: 16px; font-weight: 800; color: #000; margin-bottom: 4px; line-height: 1.3; }
.product-info .desc { font-size: 14px; color: #666; line-height: 1.4; margin-bottom: 12px; }

.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: #000; font-size: 14px; letter-spacing: 2px; }

.product-pricing { font-size: 14px; color: #1a1a1a; margin-bottom: 16px; display: flex; align-items: baseline; gap: 6px; }
.price-label { color: #1a1a1a; }
.price-new { font-weight: 700; }

.product-actions { margin-top: auto; }
.btn-shop { display: block; width: 100%; padding: 14px; background: #000; color: #fff; text-align: center; font-weight: 700; font-size: 14px; transition: var(--transition); border: none; cursor: pointer; }
.btn-shop:hover { background: #333; }

/* ===== RESULTS / TRUST SECTION ===== */
.results { background: var(--primary); padding: 56px 0; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.results::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.results .container { position: relative; z-index: 1; }
.results h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; margin-bottom: 12px; }
.results h2 span { color: var(--accent); }
.results > .container > p { font-size: 17px; opacity: .85; margin-bottom: 56px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.trust-card { text-align: center; }
.trust-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 28px; height: 28px; color: var(--accent); }
.trust-card h4 { font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.trust-card p { font-size: 14px; opacity: .8; line-height: 1.6; }

/* ===== BENEFITS SECTION ===== */
.benefits { padding: 56px 0; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--primary-light); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: var(--transition); }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.benefit-icon svg { width: 24px; height: 24px; color: var(--white); }
.benefit-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--primary-dark); }
.benefit-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== NEWSLETTER ===== */
.newsletter { padding: 56px 0; background: var(--bg-warm); position: relative; overflow: hidden; }
.newsletter::before, .newsletter::after { content: ''; position: absolute; width: 200px; height: 200px; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.newsletter h2 { font-size: 32px; font-weight: 800; color: var(--primary-dark); margin-bottom: 12px; }
.newsletter p { color: var(--text-light); margin-bottom: 32px; }
.newsletter-form { display: flex; flex-direction: column; gap: 16px; }
.newsletter-form input { padding: 16px 24px; border-radius: var(--radius-full); border: 2px solid var(--border); font-size: 15px; background: var(--white); transition: var(--transition); }
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form button { padding: 16px 32px; }

/* ===== FOOTER ===== */
.footer { background: var(--primary-dark); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 14px; opacity: .7; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--accent); }
.social-links a svg { width: 16px; height: 16px; }
.footer h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--accent); }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; opacity: .7; transition: var(--transition); }
.footer ul a:hover { opacity: 1; color: var(--accent); }
.footer-bottom { text-align: center; padding: 24px 0; font-size: 13px; opacity: .5; }
.payment-icons { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.payment-icons span { background: rgba(255,255,255,.1); padding: 6px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail { padding: 34px 0 80px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pd-gallery { position: sticky; top: 100px; }
.pd-main-img { background: #ffffff; border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pd-main-img img { max-height: 400px; object-fit: contain; }
.pd-thumbs { display: flex; gap: 12px; }
.pd-thumbs .thumb { width: 80px; height: 80px; background: #ffffff; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.pd-thumbs .thumb.active, .pd-thumbs .thumb:hover { border-color: var(--primary); }
.pd-thumbs .thumb img { max-height: 60px; object-fit: contain; }
.pd-info h1 { font-size: 32px; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.pd-info .subtitle { font-size: 16px; color: var(--text-light); margin-bottom: 20px; }
.pd-pricing { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.pd-pricing .old { font-size: 18px; color: #999; text-decoration: line-through; }
.pd-pricing .current { font-size: 32px; font-weight: 800; color: var(--primary-dark); }
.pd-pricing .save { background: #f3f4f6; color: var(--primary); padding: 4px 12px; border-radius: var(--radius-full); font-size: 13px; font-weight: 700; }
.pd-benefits { margin-bottom: 28px; }
.pd-benefits li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 15px; }
.pd-benefits li svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.pd-actions { display: flex; gap: 12px; margin-bottom: 32px; }
.pd-actions .btn-primary, .pd-actions .btn-secondary { flex: 1; justify-content: center; padding: 18px; font-size: 15px; }
.pd-accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 15px; }
.accordion-header svg { transition: var(--transition); width: 20px; height: 20px; }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ===== MOBILE NAV ===== */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 200; padding: 80px 24px 24px; transform: translateX(100%); transition: var(--transition); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 16px 0; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; font-size: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero { padding: 48px 16px; }
  .categories .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  
  .trust-grid { grid-template-columns: 1fr; gap: 28px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-gallery { position: static; min-width: 0; width: 100%; overflow: hidden; }
  .pd-info { min-width: 0; }
  .pd-actions { flex-direction: column; }
  .trust-strip-inner { gap: 24px; padding: 0 16px; }
  .section-title h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .categories .grid { grid-template-columns: 1fr; }
  
  .product-img { padding: 16px; }
  .product-info { padding: 14px; }
  .product-info h3 { font-size: 14px; }
  .price-new { font-size: 17px; }
  .btn-shop { padding: 12px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================
   PREMIUM MOBILE BOTTOM NAVIGATION
   ========================================= */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0,0,0,0.05);
    z-index: 9999;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        /* Add padding so content isn't hidden behind the floating nav */
        padding-bottom: 90px !important;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    font-weight: 500;
    gap: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-item svg {
    width: 24px;
    height: 24px;
    stroke: #666;
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: #000000;
    font-weight: 700;
}

.mobile-nav-item.active svg, .mobile-nav-item:hover svg {
    stroke: #000000;
    stroke-width: 2;
}

/* Add a subtle highlight behind active icon */
.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 40px;
    height: 40px;
    background: rgba(27, 69, 39, 0.08);
    border-radius: 50%;
    z-index: -1;
}

/* =========================================
   BLACK HEADINGS & BORDERS OVERRIDE
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

:root {
    --border: #000000;
}

.shark-marquee {
    border-top-color: #000000;
    border-bottom-color: #000000;
}

.cat-card:hover {
    border-color: #000000;
}

.tab-btn.active, .tab-btn:hover {
    border-color: #000000;
}

.product-card:hover {
    border-color: #000000;
}

.newsletter-form input:focus {
    border-color: #000000;
}

.pd-thumbs .thumb.active, .pd-thumbs .thumb:hover {
    border-color: #000000;
}


/* --- ALIGNMENT & RESPONSIVE GRID FIXES --- */
.results h2 { color: var(--white) !important; }
.oz-studies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

    @media(max-width:768px){
        .pd-main-img { padding: 16px !important; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
        .pd-main-img-wrap { background: #ffffff !important; width: 100%; margin: 0 auto; }
        .pd-thumbs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; justify-content: flex-start; }
        .pd-thumbs::-webkit-scrollbar { height: 4px; }
        .pd-thumbs::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
        .pd-thumbs .thumb { width: 64px !important; height: 64px !important; flex-shrink: 0; }
        .pd-grid { gap: 16px; }

    .oz-studies-grid { grid-template-columns: 1fr; }
}


/* ===== MINIMALIST HEADER & PROMO BAR ===== */
.promo-bar-minimal {
    background: #ff6f00; /* Minimalist Orange */
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 13px;
    font-weight: 500;
}
.promo-bar-minimal .promo-arrow {
    background: #fff;
    color: #ff6f00;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}
.promo-bar-minimal .promo-prev { left: 20px; }
.promo-bar-minimal .promo-next { right: 20px; }

.header-minimal {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-minimal {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-minimal {
    display: flex;
    gap: 32px;
}
.nav-minimal a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}
.nav-minimal a:hover {
    color: #000;
}
.header-icons-minimal {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-icons-minimal button, .header-icons-minimal a {
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}
.header-icons-minimal svg {
    width: 22px;
    height: 22px;
}
.cart-count-minimal {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.mobile-menu-btn-minimal {
    display: none;
}

@media (max-width: 1024px) {
    .nav-minimal { display: none; }
    .mobile-menu-btn-minimal { display: flex; }
    .header-inner-minimal { padding: 16px 20px; }
}

@media (max-width: 768px) {
    .trust-marquee { padding: 2px 0; }
    .trust-marquee-track span { font-size: 10px; }
}

/* ===== SCROLLING TESTIMONIALS ===== */
.testimonials-section { background: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.testi-header { text-align: center; max-width: 540px; margin: 0 auto 40px auto; padding: 0 20px; }
.testi-badge { display: inline-block; border: 1px solid #e5e7eb; padding: 4px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.testi-title { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 20px; }
.testi-subtitle { color: #666; font-size: 16px; }
.testi-grid { display: flex; justify-content: center; gap: 24px; max-height: 740px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent); mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent); padding: 0 20px; }
.testi-col { display: flex; flex-direction: column; gap: 24px; padding-bottom: 24px; animation: scroll-vertical 25s linear infinite; }
.testi-col.dur-19 { animation-duration: 35s; }
.testi-col.dur-17 { animation-duration: 30s; }
.testi-col:hover { animation-play-state: paused; }

.testi-card { background: #fff; padding: 30px; border-radius: 24px; border: 1px solid #eaeaea; box-shadow: 0 10px 40px rgba(0,0,0,0.05); max-width: 320px; width: 100%; box-sizing: border-box; }
.testi-card-text { font-size: 15px; line-height: 1.5; color: #333; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testi-author-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.testi-author-info p { font-size: 12px; color: #888; margin: 0; }

@keyframes scroll-vertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@media (max-width: 1024px) {
    .testi-col:nth-child(3) { display: none; }
}
@media (max-width: 768px) {
    .testi-col:nth-child(2) { display: none; }
    .testi-title { font-size: 28px; }
}
