/* Born2Rule - Premium Minimal Design */

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --black: #000000;
    --white: #FFFFFF;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #cccccc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-logo img {
    height: 112px;
    width: auto;
}

.header-logo-gold {
    height: 112px !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.cart-btn {
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cart-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--gray-dark);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--gold);
}

.cart-drawer.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    color: var(--gold);
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart-msg {
    text-align: center;
    color: var(--gray-light);
    padding: 2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: var(--gray-light);
    cursor: pointer;
    font-size: 1.2rem;
}

.remove-item:hover {
    color: var(--white);
}

.cart-footer {
    padding: 2rem;
    border-top: 2px solid var(--gold);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--gold-dark);
}

/* Hero Section */
.hero-section-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-product-visual {
    text-align: center;
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.hero-statement {
    text-align: center;
    padding: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.hero-bold-statement {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-founding-message {
    margin-top: 2rem;
    padding: 2rem;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.hero-founding-message p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
    margin: 0.5rem 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-founding-counter {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-founding-final {
    margin-top: 1rem !important;
    padding-top: 1rem;
    font-weight: 600 !important;
    color: var(--gold) !important;
}

.hero-text {
    text-align: left;
}

.hero-brand {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.hero-tagline {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subline {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.cta-primary {
    background: var(--gold);
    color: var(--black);
}

.cta-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.cta-secondary {
    background: transparent;
    color: var(--gold);
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

/* Featured Product Section */
.featured-product-section {
    padding: 6rem 0;
    background: var(--black);
}

.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 150px;
    z-index: 1;
}

.main-image {
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: auto;
    border: 1px solid var(--gray-medium);
}

.image-thumbnails {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--gold);
}

.product-details {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.product-name {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.product-meaning {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.product-price-large {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1.5rem 0;
}

.founding-short-version {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    padding: 1.5rem;
    margin: 2rem 0;
}

.founding-short-version h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founding-short-version p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.founding-short-version strong {
    color: var(--gold);
}

.founding-micro-copy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 1rem;
    font-style: italic;
}

.product-options {
    margin-bottom: 3rem;
}

.size-selector,
.quantity-selector {
    margin-bottom: 2rem;
}

.size-selector label,
.quantity-selector label {
    display: block;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.size-buttons {
    display: flex;
    gap: 1rem;
}

.size-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gray-medium);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    background: var(--gray-medium);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-controls button:hover {
    background: var(--gold);
    color: var(--black);
}

.quantity-controls input {
    width: 80px;
    height: 40px;
    text-align: center;
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.buy-btn-large {
    width: 100%;
    padding: 1.5rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn-large:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Dual Button Container */
.dual-button-container {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.buy-btn-half {
    flex: 1;
    padding: 1.5rem;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.add-to-cart-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.buy-now-btn {
    background: var(--gold);
    color: var(--black);
}

.buy-now-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Shopify Security Note */
.shopify-security-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Full Width Buy Button (Shopify Link) */
.buy-btn-full {
    display: block;
    width: 100%;
    padding: 1.5rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.buy-btn-full:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Anthem Section */
.anthem-section {
    padding: 6rem 0;
    background: var(--gray-dark);
    text-align: center;
}

.anthem-intro {
    margin-bottom: 3rem;
}

.anthem-context {
    font-size: 1.3rem;
    color: var(--gray-light);
    line-height: 1.8;
    font-style: italic;
}

.anthem-player audio {
    width: 100%;
    max-width: 600px;
    height: 60px;
}

/* Standard Test Section */
.standard-test-section {
    padding: 6rem 0;
    background: var(--black);
}

.section-title {
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

.test-explanation {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.voting-rules {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    border: 2px solid var(--gold);
    background: var(--gray-dark);
}

.voting-rules ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.voting-rules li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--white);
}

.voting-rules li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.voting-rule-note {
    color: var(--gray-light);
    font-style: italic;
    text-align: center;
}

/* Music Player - Compact Size */
.unified-player-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--gray-dark);
    padding: 1.5rem;
    border: 1px solid var(--gold);
}

.player-display {
    margin-bottom: 2rem;
}

.track-info {
    text-align: center;
    margin-bottom: 2rem;
}

#current-track-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

#visualizer-canvas {
    width: 100%;
    max-width: 300px;
    height: 40px;
    display: block;
    margin: 0 auto;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

.progress-container span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

#progress-slider {
    flex: 1;
    height: 6px;
    background: var(--gray-medium);
    outline: none;
    cursor: pointer;
    border-radius: 3px;
}

#progress-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
}

#progress-slider::-webkit-slider-thumb:hover {
    background: var(--white);
    transform: scale(1.2);
}

#progress-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--gold);
    cursor: pointer;
    border: none;
    border-radius: 50%;
    transition: all 0.2s ease;
}

#progress-slider::-moz-range-thumb:hover {
    background: var(--white);
    transform: scale(1.2);
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: var(--gray-medium);
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.control-btn.active {
    color: var(--gold);
}

.play-pause {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#mute-btn {
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

#volume-slider {
    width: 120px;
    height: 4px;
    background: var(--gray-medium);
    outline: none;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
}

#volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

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

.vote-btn {
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.vote-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.vote-cta {
    color: var(--gray-light);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Share Section */
.share-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gray-dark);
    border-radius: 8px;
    text-align: center;
}

.vote-locked {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.share-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 1px;
}

.share-textarea {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    background: var(--gray-medium);
    color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
    margin-bottom: 1.5rem;
}

.share-textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 2rem;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn i {
    font-size: 1.2rem;
}

.tiktok-btn {
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.tiktok-btn:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
}

.whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

/* PRIMA Section */
.prima-section {
    padding: 6rem 0;
    background: var(--gray-dark);
}

.prima-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.prima-item {
    text-align: center;
    padding: 2rem 1rem;
    border: 2px solid var(--gold);
    background: var(--black);
    transition: transform 0.3s ease;
}

.prima-item:hover {
    transform: translateY(-5px);
}

.prima-item h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.prima-item p {
    font-size: 1.1rem;
    color: var(--white);
}

.prima-statement {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gray-light);
    margin-top: 3rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-signup h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.email-signup {
    display: flex;
    gap: 0.5rem;
}

.email-signup input {
    flex: 1;
    padding: 0.8rem;
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    color: var(--white);
}

.email-signup button {
    padding: 0.8rem 1.5rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.email-signup button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-medium);
    color: var(--gray-light);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .featured-product {
        grid-template-columns: 1fr;
    }
    
    .prima-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 1rem;
    }
    
    .nav-logo img,
    .header-logo-gold {
        height: 70px !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none;
        border-top: 1px solid var(--gold);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        text-align: center;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 8rem 0 4rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-bold-statement {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-founding-counter {
        font-size: 1.2rem;
    }
    
    .hero-founding-message {
        padding: 1.5rem;
    }
    
    .hero-founding-message p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .hero-brand {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-benefit {
        font-size: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 50px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Product Sections */
    .product-section {
        padding: 3rem 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        max-width: 100%;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-excerpt {
        font-size: 1rem;
    }
    
    .product-closer {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
    
    .founding-members-note {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .founding-members-note h4 {
        font-size: 1.1rem;
    }
    
    .founding-members-note p {
        font-size: 0.85rem;
    }
    
    .product-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    .security-note {
        font-size: 0.75rem;
    }
    
    /* Kingdom Builders */
    .kingdom-builders-section {
        padding: 4rem 0;
    }
    
    .kingdom-title {
        font-size: 2rem;
    }
    
    .kingdom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kingdom-caption {
        font-size: 1rem;
    }
    
    .kingdom-description {
        font-size: 0.85rem;
    }
    
    /* PRIMA Section */
    .prima-grid {
        grid-template-columns: 1fr;
    }
    
    /* Music Player & Voting */
    .music-player-box {
        padding: 2rem 1rem;
    }
    
    .track-title {
        font-size: 1.3rem;
    }
    
    #visualizer-canvas {
        height: 80px;
    }
    
    .time-display {
        font-size: 0.9rem;
    }
    
    #progress-slider {
        height: 6px;
    }
    
    #progress-slider::-webkit-slider-thumb,
    #progress-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }
    
    .player-controls {
        gap: 0.75rem;
    }
    
    .control-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .play-pause {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    
    .volume-control {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    #volume-slider {
        width: 150px;
    }
    
    .vote-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        min-height: 50px;
    }
    
    .vote-cta {
        font-size: 1rem;
    }
    
    /* Share Section */
    .share-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .vote-locked {
        font-size: 1rem;
    }
    
    .share-heading {
        font-size: 0.9rem;
    }
    
    .share-text {
        font-size: 0.9rem;
        padding: 0.75rem;
        min-height: 100px;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .share-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-links h4,
    .footer-signup h4 {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
    
    .email-signup input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .email-signup button {
        padding: 0.875rem 1.25rem;
        min-height: 48px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        font-size: 1.75rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Cart Drawer */
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-bold-statement {
        font-size: 1.25rem;
    }
    
    .hero-brand {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .kingdom-title {
        font-size: 1.75rem;
    }
    
    .track-title {
        font-size: 1.1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .play-pause {
        width: 48px;
        height: 48px;
    }
}

/* Hero Benefit Line */
.hero-benefit {
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Kingdom-Builders Section */
.kingdom-builders-section {
    padding: 6rem 0;
    background: var(--gray-dark);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.kingdom-builders-section .section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 4rem;
    letter-spacing: 3px;
}

.kingdom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.kingdom-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.kingdom-card:hover {
    transform: translateY(-10px);
}

.kingdom-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-medium);
    border: 3px solid var(--gold);
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.kingdom-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.kingdom-card:hover .kingdom-photo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.kingdom-caption {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.kingdom-caption strong {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .kingdom-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .kingdom-builders-section .section-title {
        font-size: 2rem;
    }
}

/* Product Excerpt & Closer Styling */
.product-excerpt {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
    margin: 0.5rem 0 1rem 0;
    letter-spacing: 0.5px;
}

.product-closer {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Footer Caption Styling */
.footer-caption {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

/* Founding Members Page Styles */
.founding-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
}

.founding-title {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.founding-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.spots-counter {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    padding: 2rem 3rem;
    display: inline-block;
    margin-top: 2rem;
}

.counter-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.spots-remaining {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
}

.spots-total {
    font-size: 1.5rem;
    color: var(--gray-light);
    font-weight: 600;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 700;
}

.founding-benefits {
    padding: 6rem 2rem;
    background: var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--gray-dark);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-card p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
}

.founding-meaning {
    padding: 6rem 2rem;
    background: var(--gray-dark);
}

.meaning-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.meaning-content h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.meaning-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.meaning-emphasis {
    font-size: 1.4rem !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
    margin-top: 2rem !important;
    padding-top: 2rem;
    border-top: 1px solid var(--gold);
}

.founding-conditions {
    padding: 6rem 2rem;
    background: var(--black);
}

.founding-conditions .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.conditions-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
}

.condition-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.condition-item p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.condition-item strong {
    color: var(--white);
}

.founding-cta {
    padding: 6rem 2rem;
    background: var(--black);
    text-align: center;
}

.founding-cta h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.founding-cta p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    font-family: 'Oswald', sans-serif;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
}

.cta-note {
    font-size: 0.9rem !important;
    color: var(--gray-light) !important;
    font-style: italic;
    margin-top: 2rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .founding-title {
        font-size: 3rem;
    }
    
    .founding-subtitle {
        font-size: 1.2rem;
    }
    
    .spots-remaining {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
