/*
Theme Name: The Golden Standard
Theme URI: https://thegoldenstandard.com
Author: Antigravity
Description: A premium custom theme for The Golden Standard.
Version: 2.0
*/

/* ---------------------------------------------------------
   PREMIUM THEME - Dark/Gold Luxury
--------------------------------------------------------- */

/* GLOBAL */
body {
    background-color: #050505;
    background-image:
        radial-gradient(ellipse at 50% -20%, rgba(212, 175, 55, 0.08), transparent 50%),
        radial-gradient(circle at 50% 0, #1a1a1a, #050505 60%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* ---------------------------------------------------------
   ANNOUNCEMENT BAR
--------------------------------------------------------- */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-bar {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border-bottom: 2px solid #F5B841;
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
    animation: slideDown 0.5s ease-out;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.announcement-bar p {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.announcement-bar strong {
    color: #F5B841;
    font-weight: 700;
}

.dismiss-announcement {
    position: absolute;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.dismiss-announcement:hover {
    color: #F5B841;
    transform: scale(1.1);
}

/* ---------------------------------------------------------
   HEADER - Stacked Centered Layout
--------------------------------------------------------- */
header {
    padding: 24px 0 16px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Logo - Large & Prominent */
.logo {
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.logo img {
    height: 72px;
    /* Much bigger */
    width: auto;
    display: block;
}

/* Main Nav - Centered Below Logo */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 48px;
    align-items: center;
}

.main-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #F5B841, #F4E4BC);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: #F5B841;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Cart Link in Nav */
.main-nav ul li.cart-item .cart-link {
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 8px 20px;
    border-radius: 2px;
    background: transparent;
    transition: all 0.3s ease;
}

.main-nav ul li.cart-item .cart-link:hover {
    background: #F5B841;
    color: #000 !important;
    border-color: #F5B841;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Links */
a {
    color: #F5B841;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #fff;
}

/* =========================================================
   SINGLE PRODUCT PAGE - REDESIGNED
   Premium two-column layout focused on conversion
========================================================= */

/* Main Container */
.woocommerce div.product {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

/* Two-Column Layout: Gallery | Info */
.tgs-product-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: start;
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .tgs-product-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ============ LEFT COLUMN: Product Gallery ============ */
.tgs-product-gallery {
    position: relative;
    width: 100%;
}

.woocommerce-product-gallery {
    position: relative;
    opacity: 1 !important;
    max-width: 100% !important;
    width: 100% !important;
    float: none !important;
}

.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    width: 100% !important;
}

.woocommerce-product-gallery__image {
    width: 100% !important;
}

.woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
}

.woocommerce-product-gallery img,
.woocommerce-product-gallery .wp-post-image {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.woocommerce-product-gallery__image a:hover img {
    transform: scale(1.02);
}

/* Thumbnails */
.woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding: 0;
    list-style: none;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    flex: 0 0 auto;
    width: 90px;
}

.woocommerce-product-gallery .flex-control-thumbs li img {
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woocommerce-product-gallery .flex-control-thumbs li img:hover,
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    opacity: 1;
    border-color: #F5B841;
}

/* ============ RIGHT COLUMN: Product Info ============ */
.tgs-product-info {
    position: relative;
}

/* Product Title */
.tgs-product-title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0 0 24px 0;
    line-height: 0.95;
}

@media (max-width: 768px) {
    .tgs-product-title {
        font-size: 2.5rem;
    }
}

/* Product Price */
.tgs-product-price .price {
    color: #F5B841 !important;
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin: 0 0 32px 0 !important;
    display: block !important;
}

.tgs-product-price .price .amount {
    color: #F5B841 !important;
}

/* Short Description */
.tgs-product-short-desc {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.tgs-product-short-desc p {
    margin-bottom: 16px;
}

/* Hide default stock status */
.stock,
.woocommerce-variation-availability,
.availability {
    display: none !important;
}

/* ============ Purchase Section ============ */
.tgs-product-purchase {
    margin-bottom: 40px;
}

/* Variations Form Container */
.tgs-variations-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px;
}

/* Size Selector Section */
.tgs-size-selector {
    margin-bottom: 24px;
}

.tgs-size-selector table.variations {
    width: 100%;
    border: none;
    margin: 0;
}

.tgs-size-selector tr {
    border: none;
}

.tgs-size-selector td,
.tgs-size-selector th {
    border: none;
    padding: 0;
    vertical-align: middle;
}

.tgs-size-selector .label {
    padding-right: 20px;
    width: 80px;
}

.tgs-size-selector .label label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: none;
    letter-spacing: 0.5px;
    margin: 0;
}

.tgs-size-selector .value {
    width: 100%;
}

/* Size Dropdown */
.tgs-size-selector select {
    background-color: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 6px;
    padding: 16px 45px 16px 20px;
    height: auto;
    min-height: 54px;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23F5B841' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    cursor: pointer;
}

.tgs-size-selector select:hover {
    border-color: rgba(245, 184, 65, 0.5) !important;
    background-color: rgba(255, 255, 255, 0.09) !important;
}

.tgs-size-selector select:focus {
    border-color: #F5B841 !important;
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 184, 65, 0.12);
}

/* Clear Link */
.reset_variations {
    color: #F5B841 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    margin-left: 16px;
    display: inline-block;
}

.reset_variations:hover {
    opacity: 0.7;
}

/* Stock Alert - Full Width Row */
.tgs-stock-alert {
    display: block !important;
    width: 100% !important;
    margin: 24px 0 !important;
    padding: 16px 20px !important;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideIn 0.4s ease;
    text-align: left;
    box-sizing: border-box !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tgs-stock-alert .tgs-stock-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Low Stock Alert */
.tgs-stock-alert.tgs-stock-low {
    background: rgba(245, 184, 65, 0.15);
    border: 2px solid #F5B841;
    color: #F5B841;
}

/* Backorder Alert */
.tgs-stock-alert.tgs-stock-backorder {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

/* Purchase Controls: Quantity + Cart Button */
.tgs-purchase-controls {
    margin-top: 32px;
}

.tgs-qty-cart-wrapper {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* Quantity Input */
.tgs-qty-cart-wrapper .quantity {
    flex-shrink: 0;
}

.tgs-qty-cart-wrapper .quantity .qty {
    background-color: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 6px;
    padding: 0;
    height: 58px;
    width: 90px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: border-color 0.3s ease;
}

.tgs-qty-cart-wrapper .quantity .qty:focus {
    border-color: #F5B841 !important;
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 184, 65, 0.12);
}

/* Add to Cart Button */
.tgs-add-to-cart-btn {
    flex: 1;
    background: #F5B841 !important;
    color: #000000 !important;
    border: none !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 48px;
    height: 58px;
    border-radius: 6px !important;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tgs-add-to-cart-btn:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 184, 65, 0.4);
}

.tgs-add-to-cart-btn:active {
    transform: translateY(0);
}

/* Product Meta */
.tgs-product-meta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tgs-product-meta .product_meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.tgs-product-meta .product_meta>span {
    display: block;
    margin-bottom: 10px;
}

.tgs-product-meta .product_meta a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
    text-decoration: none;
}

.tgs-product-meta .product_meta a:hover {
    color: #F5B841;
}

/* ============ Product Details/Tabs Section ============ */
.tgs-product-details {
    margin-top: 100px;
}

/* Tabs Styling */
.woocommerce-tabs {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
}

.woocommerce-tabs .tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-tabs .tabs li {
    margin: 0;
}

.woocommerce-tabs .tabs li a {
    display: block;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-tabs .tabs li a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.woocommerce-tabs .tabs li.active a {
    color: #F5B841;
    border-bottom-color: #F5B841;
}

.woocommerce-tabs .woocommerce-Tab

/* ---------------------------------------------------------
   TABS - Minimal Premium
--------------------------------------------------------- */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    margin-bottom: 40px !important;
    display: flex;
    gap: 48px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 0 !important;
    font-size: 0.85rem;
    position: relative;
    transition: color 0.3s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #F5B841;
    transition: width 0.3s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #ffffff !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::after {
    width: 100%;
}

.woocommerce div.product .woocommerce-tabs .panel {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.8;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    display: none;
}

/* ---------------------------------------------------------
   MESSAGES / ALERTS
--------------------------------------------------------- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: rgba(212, 175, 55, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-left: 4px solid #F5B841 !important;
    border-radius: 4px;
}

/* ---------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
--------------------------------------------------------- */
@media (max-width: 768px) {
    .logo img {
        height: 56px;
    }

    .main-nav ul {
        gap: 24px;
    }

    .main-nav ul li a {
        font-size: 0.75rem;
    }

    .woocommerce div.product .product_title {
        font-size: 2rem;
    }
}

/* ---------------------------------------------------------
   SHOP PAGE - Premium Archive
--------------------------------------------------------- */
.shop-page {
    padding-top: 140px;
    /* Account for fixed header */
    min-height: 100vh;
}

/* Shop Page */
.shop-header {
    text-align: center;
    padding: 60px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 16px;
    background: linear-gradient(90deg, #ffffff 0%, #F5B841 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 100px;
    justify-content: center;
}

/* Product Card */
.product-card {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Force transparent backgrounds on all product images */
.product-card img,
.product-card-image img,
.woocommerce-product-gallery img,
.wp-post-image,
.attachment-woocommerce_thumbnail,
.attachment-large,
.attachment-shop_catalog {
    background: transparent !important;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(212, 175, 55, 0.1);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 4px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.view-product {
    background: linear-gradient(135deg, #F5B841 0%, #D4A028 100%);
    color: #000;
    padding: 12px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.product-card:hover .view-product {
    transform: translateY(0);
}

.product-card-info {
    padding: 24px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
    color: #fff;
}

.product-card-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #F5B841;
}

/* ---------------------------------------------------------
   HOMEPAGE - Premium Styling
--------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(212, 175, 55, 0.15), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.08), transparent 40%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-product img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    margin-bottom: 40px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 16px;
    background: linear-gradient(90deg, #ffffff 0%, #F5B841 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
    margin: 0 0 48px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #F5B841 0%, #D4A028 100%);
    color: #000;
    padding: 16px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: #000;
}

/* Badge Section */
.badge-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.badge-item h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F5B841;
    margin: 0 0 12px;
}

.badge-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-product img {
        max-width: 280px;
    }

    .badge-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shop-title {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
    }
}

/* ---------------------------------------------------------
   SHOP PAGE - Enhanced
--------------------------------------------------------- */

/* Shop Hero Section */
.shop-hero {
    padding: 100px 20px 60px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.12), transparent 60%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 80px;
}

.shop-hero .shop-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #F5B841 0%, #ffffff 50%, #F5B841 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-hero .shop-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 2px;
}

/* Shop Sections (Apparel / Hats) */
.shop-section {
    margin-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #F5B841;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 1px;
}

/* Shop: 3-Column Product Grid */
.products-grid-shop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .products-grid-shop {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .products-grid-shop {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shop-hero .shop-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Enhanced Product Card Hover States */
.product-card {
    position: relative;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.quick-view,
.view-product {
    color: #F5B841;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    z-index: 5;
}

.badge-new {
    background: linear-gradient(135deg, #F5B841 0%, #D4A028 100%);
    color: #000;
}

/* Section Divider (Optional) */
.shop-section+.shop-section::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5B841, transparent);
    margin: 0 auto 80px;
}


/* ---------------------------------------------------------
   HOMEPAGE - Hero Minimal (Title Only)
--------------------------------------------------------- */
.hero-minimal {
    padding: 160px 0 60px;
    text-align: center;
}

.hero-title-lg {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

.text-gold {
    color: #F5B841;
}

.text-center {
    text-align: center;
}

/* ---------------------------------------------------------
   HOMEPAGE - Products Section
--------------------------------------------------------- */
.products-section {
    padding: 80px 0 100px;
    background: #141414;
}

/* ---------------------------------------------------------
   HOMEPAGE - Season Countdown Section
--------------------------------------------------------- */
.season-section {
    padding: 100px 20px;
    background: #1C1C1C;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.season-info {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.season-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.season-details {
    font-size: 0.9rem;
    color: #F5B841;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.season-context {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Countdown Timer */
.countdown-wrapper {
    margin-bottom: 40px;
}

.countdown-label {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #F5B841;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.countdown-unit {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.countdown-separator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ---------------------------------------------------------
   HOMEPAGE - Lifestyle/Quote Section
--------------------------------------------------------- */
.lifestyle-section {
    padding: 100px 16px;
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lifestyle-quote {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: #F5B841;
    margin-bottom: 16px;
}

.lifestyle-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    max-width: 500px;
    margin: 0 auto 24px;
}

/* ---------------------------------------------------------
   RESPONSIVE - Homepage Mobile
--------------------------------------------------------- */
@media (max-width: 768px) {
    .hero-title-lg {
        font-size: 2.5rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-separator {
        font-size: 1.2rem;
    }
}

/* ---------------------------------------------------------
   HOME 2 - Story First Alternative
--------------------------------------------------------- */

/* Lifestyle Hero */
.hero-lifestyle {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.hero-lifestyle-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('assets/images/hero-baseball.png') center center/cover no-repeat;
    z-index: -1;
}

.hero-lifestyle-content {
    text-align: center;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #F5B841;
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-micro {
    margin-top: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.btn-gold {
    background: #F5B841;
    color: #000;
    padding: 16px 40px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 184, 65, 0.3);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 1rem;
}

/* Story Teaser */
.story-teaser {
    padding: 100px 20px;
    background: #f8f8f8;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.story-teaser-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.story-accent {
    width: 60px;
    height: 3px;
    background: #F5B841;
    margin: 0 auto 32px;
}

.story-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
    font-weight: 300;
}

.story-link {
    color: #F5B841;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.story-link:hover {
    color: #fff;
}

/* Products Tease Section - Homepage */
.products-tease {
    padding: 100px 20px;
    background: #050505;
}

/* Homepage: 4-Column Featured Product Grid */
.products-grid-featured {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

@media (max-width: 1200px) {
    .products-grid-featured {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .products-grid-featured {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Products Section Header (JUST IN) */
.products-header-section {
    text-align: center;
    margin-bottom: 60px;
}

.products-section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #F5B841;
    margin-bottom: 10px;
}

.products-section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 1px;
}

/* View All Button Container */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

/* Product Tease Card (Homepage) */
.product-tease-card {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.product-tease-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-tease-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.product-tease-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.product-tease-card:hover .product-tease-image img {
    transform: scale(1.05);
}

.product-tease-info {
    margin-bottom: 16px;
}

.product-tease-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #fff;
}

.product-tease-price {
    font-size: 1.1rem;
    color: #F5B841;
    font-weight: 600;
}

/* Gold Glow Pulse Animation */
@keyframes goldPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(245, 184, 65, 0.3),
            0 0 20px rgba(245, 184, 65, 0.2),
            0 0 30px rgba(245, 184, 65, 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(245, 184, 65, 0.6),
            0 0 40px rgba(245, 184, 65, 0.4),
            0 0 60px rgba(245, 184, 65, 0.2);
    }
}

/* Apply pulse to Black Hat on homepage */
.product-tease-card[data-product-slug="eags-black"] .product-tease-image {
    animation: goldPulse 3s ease-in-out infinite;
    border-radius: 8px;
}

/* Stock Ribbon Badge */
.stock-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #F5B841 0%, #d89d2f 100%);
    color: #000;
    padding: 8px 45px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* Ensure parent containers have position relative */
.product-tease-image,
.product-card-image {
    position: relative;
    overflow: hidden;
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: #F5B841;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 184, 65, 0.3);
}

/* Statement Section */
.statement-section {
    padding: 100px 20px;
    background: #050505;
}

.statement-headline {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Product Spotlight */
.product-spotlight {
    padding: 100px 20px;
    background: #ffffff;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.spotlight-image img {
    width: 100%;
    border-radius: 8px;
}

.spotlight-details {
    padding: 20px 0;
}

.spotlight-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: #111;
}

.spotlight-price {
    font-size: 1.5rem;
    color: #F5B841;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
}

.spotlight-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.spotlight-features li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spotlight-features li:last-child {
    border-bottom: none;
}

.spotlight-variants {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.variant-thumb {
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.variant-thumb.active,
.variant-thumb:hover {
    border-color: #F5B841;
}

.variant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.reviews-scroll {
    display: flex;
    gap: 60px;
    animation: scroll-reviews 20s linear infinite;
    width: max-content;
}

.review-item {
    flex-shrink: 0;
    padding: 0 20px;
}

.review-item p {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    margin: 0;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: #111;
}

.cta-headline {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 32px;
    line-height: 1.2;
}

/* Home 2 Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spotlight-title {
        font-size: 1.8rem;
    }

    .story-text {
        font-size: 1.15rem;
    }

    .testimonial p {
        font-size: 1.2rem;
    }

    .cta-headline {
        font-size: 2rem;
    }
}

/* ---------------------------------------------------------
   STRIPE PAYMENT - Container Styling
   (Cannot style inside iframe, but can style container)
--------------------------------------------------------- */

/* Stripe payment wrapper - make it look intentional */
.wc-stripe-elements-field,
.wc-stripe-payment-element,
#wc-stripe-payment-element,
.payment_method_stripe .payment_box,
#stripe-payment-element,
.stripe-card-element,
[id*="stripe"] .payment_box {
    background: #1a1a1a !important;
    border-radius: 8px !important;
    padding: 16px !important;
    border: 1px solid #333 !important;
}

/* Style the payment method label area */
.payment_method_stripe>label,
.wc_payment_method.payment_method_stripe>label {
    font-weight: 600 !important;
    color: #333 !important;
}

/* If there's a Stripe Link container */
.stripe-link-container,
[class*="Link"] {
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* ---------------------------------------------------------
   SOCIAL SECTION - Instagram & Facebook
--------------------------------------------------------- */
.social-section {
    padding: 80px 0;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-headline {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 12px;
    color: #fff;
}

.social-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 32px;
}

.instagram-feed-wrapper {
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #F5B841;
    color: #000;
    border-color: #F5B841;
    transform: translateY(-3px);
}

.social-link svg {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* ---------------------------------------------------------
   FOOTER - Premium 3-Column Layout
--------------------------------------------------------- */
#site-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
    margin-top: 0;
    color: #fff;
    font-size: 0.95rem;
}

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

/* Brand Column */
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.9;
}

.footer-tagline {
    color: #888;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: #F5B841;
    color: #000;
    border-color: #F5B841;
    transform: translateY(-2px);
}

/* Branded Hashtag */
.footer-hashtag {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.footer-hashtag .hashtag {
    color: #F5B841;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Links Column */
.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #F5B841;
}

/* Newsletter Column */
.footer-newsletter p {
    color: #888;
    margin-bottom: 24px;
    line-height: 1.5;
}

.tgs-newsletter-form .input-group {
    display: flex;
    gap: 0;
    position: relative;
}

.tgs-newsletter-form input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    color: #fff;
    padding: 16px 20px;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
    outline: none;
    transition: background 0.3s ease;
}

.tgs-newsletter-form input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.tgs-newsletter-form button.btn-gold {
    border-radius: 0 4px 4px 0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.tgs-newsletter-form button.btn-gold:hover {
    transform: none;
    background: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .tgs-newsletter-form .input-group {
        max-width: 400px;
        margin: 0 auto;
    }

    .brevo-form-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ---------------------------------------------------------
   BREVO FORM - Override Default Styles
--------------------------------------------------------- */
.brevo-form-wrapper .sib-form {
    background: transparent !important;
    padding: 0 !important;
}

.brevo-form-wrapper .sib-email-area,
.brevo-form-wrapper label {
    color: #888 !important;
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.brevo-form-wrapper input[type="email"],
.brevo-form-wrapper input[type="text"] {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 14px 16px !important;
    border-radius: 4px !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    margin-bottom: 16px !important;
}

.brevo-form-wrapper input[type="email"]:focus,
.brevo-form-wrapper input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #F5B841 !important;
}

.brevo-form-wrapper .sib-default-btn,
.brevo-form-wrapper input[type="submit"],
.brevo-form-wrapper button[type="submit"] {
    background: #F5B841 !important;
    color: #000 !important;
    border: none !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.9rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.brevo-form-wrapper .sib-default-btn:hover,
.brevo-form-wrapper input[type="submit"]:hover,
.brevo-form-wrapper button[type="submit"]:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
}

/* Hide Brevo branding if present */
.brevo-form-wrapper .sib-form-message-panel,
.brevo-form-wrapper .sib-loader,
.tgs-popup-form .sib-form-message-panel,
.tgs-popup-form .sib-loader {
    background: rgba(245, 184, 65, 0.1) !important;
    color: #F5B841 !important;
    border-radius: 4px !important;
}

/* ---------------------------------------------------------
   EXIT INTENT POPUP
--------------------------------------------------------- */
.tgs-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tgs-popup-content {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-width: 420px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tgs-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 1;
}

.tgs-popup-close:hover {
    color: #fff;
}

.tgs-popup-body {
    padding: 48px 32px 32px;
    text-align: center;
}

.tgs-popup-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tgs-popup-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F5B841;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tgs-popup-body>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 24px;
}

.tgs-popup-form {
    margin-bottom: 16px;
}

/* Style Brevo form inside popup */
.tgs-popup-form .sib-form {
    background: transparent !important;
    padding: 0 !important;
}

.tgs-popup-form .sib-email-area,
.tgs-popup-form label {
    color: #888 !important;
    font-size: 0.85rem !important;
    text-align: left !important;
    margin-bottom: 6px !important;
}

.tgs-popup-form input[type="email"],
.tgs-popup-form input[type="text"] {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    padding: 14px 16px !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
}

.tgs-popup-form input[type="email"]:focus {
    border-color: #F5B841 !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.tgs-popup-form .sib-default-btn,
.tgs-popup-form input[type="submit"],
.tgs-popup-form button[type="submit"] {
    background: #F5B841 !important;
    color: #000 !important;
    border: none !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.9rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.tgs-popup-form .sib-default-btn:hover,
.tgs-popup-form input[type="submit"]:hover {
    background: #fff !important;
}

.tgs-popup-note {
    display: block;
    font-size: 0.8rem;
    color: #555;
    margin-top: 8px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .tgs-popup-body {
        padding: 40px 24px 24px;
    }

    .tgs-popup-body h2 {
        font-size: 1.5rem;
    }
}