/* =========================================
   GoneTo11 Audio Plugins - Official Styles
   ========================================= */

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Prevents sideways scrolling on mobile */
}

/* THE MAGIC SEO HIDER 
   This hides text from the screen while keeping it 
   fully visible to Google and screen readers. */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Header & Branding */
.page-header {
    width: 100%;
    padding: 50px 20px;
    border-bottom: 1px solid #222;
    text-align: center;
    box-sizing: border-box;
}

.logo {
    display: block;
    margin: 0 auto;
    width: 450px; 
    max-width: 95%; 
    height: auto;
}

/* =========================================
   DESKTOP LAYOUT (Flexbox)
   ========================================= */
.product-container {
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
    display: flex;
    flex-direction: row; /* Side-by-side on desktop */
    justify-content: center;
    gap: 40px; 
    padding: 20px;
    box-sizing: border-box;
}

.product-card {
    background-color: #111111;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1; /* Makes cards equal width */
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
    border-color: #555;
    transform: translateY(-5px);
}

.card-image {
    background-color: #1a1a1a;
    height: 500px; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #222;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.card-details {
    padding: 30px 20px;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Specific Warnings & Labels */
.os-warning {
    margin-top: 15px;
    font-size: 10px;
    color: #ff4757;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #ff4757;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* Button & Interaction Styles */
.button-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    width: 100%; 
    margin-top: 25px;
}

.button-slot {
    width: 130px;
    flex-shrink: 0;
}

.action-button {
    width: 100%; 
    padding: 14px 0; 
    border: none;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.action-button.buy-now { background-color: #2ecc71; color: #000000; } 
.action-button.buy-now:hover { background-color: #27ae60; transform: scale(1.05); }

.action-button.hear-it { background-color: #333; color: #fff; border: 1px solid #444; } 
.action-button.hear-it:hover { background-color: #444; border-color: #666; } 

.action-button.download-demo { background-color: #8b0000; color: #fff; } 
.action-button.download-demo:hover { background-color: #b30000; } 

/* =========================================
   SEO CONTENT SECTION (Bottom Text)
   ========================================= */
.tone-story {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.tone-box {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    margin-bottom: 40px;
    text-align: left;
}

.tone-box h3 {
    margin-top: 0;
    font-size: 24px;
    color: #ffffff;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
    display: inline-block;
}

.tone-box p {
    color: #aaaaaa;
    line-height: 1.8;
    font-size: 16px;
}

/* Footer */
.page-footer {
    width: 100%;
    padding: 50px 20px;
    border-top: 1px solid #222; 
    font-size: 13px;
    text-align: center;
    line-height: 2;
    color: #666;
    box-sizing: border-box;
}

.page-footer a {
    color: #aaa; 
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.2s ease;
}

.page-footer a:hover { color: #ffcc00; text-decoration: underline; }

/* =========================================
   MOBILE OVERRIDE (Forced Vertical Stack)
   ========================================= */
@media (max-width: 900px) {
    .page-header { padding: 30px 15px; }
    
    .product-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 10px;
    }

    .product-card {
        width: 100%;
        max-width: 450px;
    }

    .card-image {
        height: auto; 
        min-height: 300px;
        padding: 20px;
    }

    .button-group {
        flex-direction: column; /* Stack buttons vertically on phones */
        align-items: center;
        gap: 10px;
    }

    .button-slot {
        width: 100%; /* Buttons take full width of card */
    }
    
    .action-button {
        padding: 18px 0;
        font-size: 12px; 
    }

    .tone-box { padding: 25px; }
    .tone-box h3 { font-size: 20px; }
}