/* ============================================================ 
   GK SINGLE PRODUCT TEMPLATE (V3: Premium Sleeve)
   ============================================================ */

/* --- Container & Typography --- */
.gk-vinyl-page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    /* Removed padding to let theme handle spacing or allow full-width */
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: transparent;
    /* Was #fcfcfc - Made transparent to use site background */
}

/* --- Breadcrumbs --- */
.gk-breadcrumbs-wrapper {
    padding: 20px 0 0 0;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gk-breadcrumbs-wrapper a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.gk-breadcrumbs-wrapper a:hover {
    color: #000;
}

/* --- Hero Section --- */
/* --- Hero Section (Split Rows) --- */
.gk-hero-section-split {
    display: flex;
    flex-direction: column;
    padding: 60px 0;
    margin: 0 auto;
    max-width: 1200px;
}

/* Row Styling */
.gk-hero-row-top,
.gk-hero-row-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    /* Massive gap constraint */
    justify-content: center;
    width: 100%;
}

.gk-hero-row-top {
    align-items: stretch;
    /* Crucial for Height Matching */
    margin-bottom: 20px;
    /* Space between Image row and Gallery row */
}

.gk-hero-row-bottom {
    align-items: flex-start;
}

/* Columns */
.gk-col-image,
.gk-col-gallery {
    flex: 0 0 575px;
    /* Fixed width for Image side */
    max-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Prevent stretching (oval record fix) */
    /* Center text/content if any */
}

.gk-col-gallery {
    justify-content: flex-start;
    /* Gallery left aligned */
}

.gk-col-details,
.gk-col-payment {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.gk-col-details {
    justify-content: space-between;
    /* Pushes Top (Title) and Bottom (Cart) apart */
    padding-left: 0;
    /* Reset padding if needed */
}

.gk-col-payment {
    justify-content: flex-start;
    /* Align icons to top of this row */
    padding-top: 10px;
    /* Align visually with galaxy thumbs */
}

/* (Cleaned up duplicate) */

/* Gallery Strip */
.gk-product-gallery-strip {
    display: flex;
    gap: 15px;
    /* More space between thumbs */
    margin-top: 15px;
    justify-content: flex-start;
    /* User requested LEFT align */
    width: 100%;
}

.gk-gallery-thumb {
    width: 120px;
    /* Increased from 80px */
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.gk-gallery-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.gk-gallery-thumb.is-active {
    border-color: #f8db46;
}

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

.gk-sleeve-container {
    position: relative;
    width: 575px;
    /* Fixed Base Size */
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto !important;
    /* Ensure it respects width/aspect-ratio */
    z-index: 10;
    cursor: pointer;
    /* Signal: Click me! */
    flex-shrink: 0;
}

/* The Cover (Front) */
.gk-vinyl-cover {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
    border-radius: 4px;
    box-shadow:
        10px 20px 40px rgba(0, 0, 0, 0.15),
        /* Soft ambient */
        0 0 0 1px rgba(0, 0, 0, 0.05);
    /* Border hint */
    background: #fff;
    transition: transform 0.4s ease;
    overflow: hidden;
    /* Crop image rounded corners */
}

.gk-vinyl-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Shine Overlay */
.gk-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    z-index: 21;
}

/* The Record (Behind) */
.gk-vinyl-record {
    position: absolute;
    top: 2%;
    bottom: 2%;
    left: 2%;
    right: 2%;
    /* Matches cover size initially */
    border-radius: 50%;
    background: radial-gradient(circle, #151515 0%, #0a0a0a 100%);
    z-index: 10;
    /* Behind cover */
    transform: translate3d(15%, 0, 0);
    /* Default: Peek out slightly (15%) */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grooves Texture with SHEEN (Reflection) */
.gk-vinyl-grooves {
    position: absolute;
    inset: 3%;
    border-radius: 50%;
    /* Grooves */
    background: repeating-radial-gradient(circle at center,
            #151515 0px,
            #151515 2px,
            #222 3px,
            #151515 4px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    /* For the sheen */
}

/* Light Sheen (The "Sector" Reflection) */
.gk-vinyl-grooves::after {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(transparent 0deg,
            rgba(255, 255, 255, 0.07) 30deg,
            transparent 60deg,
            transparent 180deg,
            rgba(255, 255, 255, 0.07) 210deg,
            transparent 240deg);
    border-radius: 50%;
}

/* Label */
.gk-vinyl-label-inner {
    width: 38%;
    height: 38%;
    background: radial-gradient(circle, #f8db46 0%, #aa8000 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Label Text/Logo Marker */
.gk-vinyl-label-inner::before {
    content: 'SIDE A';
    /* Asymmetric marker */
    position: absolute;
    top: 25%;
}

.gk-vinyl-label-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #000;
    /* Spindle hole */
    border-radius: 50%;
}

/* INTERACTION: Hover State (Slide Out more) */
/* INTERACTION: Hover State (Slide Out more) */
.gk-sleeve-container:hover .gk-vinyl-record {
    transform: translate3d(45%, 0, 0);
    /* Slide out fully (Match playing state) */
}

/* INTERACTION: Playing State (Spin) */
.gk-vinyl-record.is-spinning {
    animation: gk-spin-record 3s linear infinite;
    /* Maintain slide out position while spinning */
}

@keyframes gk-spin-record {
    from {
        transform: translate3d(45%, 0, 0) rotate(0deg);
    }

    to {
        transform: translate3d(45%, 0, 0) rotate(360deg);
    }
}

@keyframes gk-spin-record-mobile {
    from {
        transform: translate3d(30%, 0, 0) rotate(0deg);
    }

    to {
        transform: translate3d(30%, 0, 0) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .gk-vinyl-record.is-spinning {
        animation: gk-spin-record-mobile 3s linear infinite;
    }
}

/* --- Info Column (Right Side) --- */
/* Removed: .gk-hero-details (Replaced by .gk-col-details) */

/* Breadcrumbs (Now inside details) */
.gk-breadcrumbs-wrapper {
    padding: 0 0 10px 0;
    /* Adjusted padding */
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

/* Title Style (Unified) */
.gk-product-title,
.single-product .product_title {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    color: #1a1a1a !important;
    letter-spacing: -0.5px !important;
}

/* Price Area Wrapper (Price + Availability + Button) */
.gk-price-cart-wrapper {
    display: flex;
    flex-direction: column;
    /* Stack them vertically for better control */
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

/* Price Row (Unified) */
.gk-price-row,
.single-product .price {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 10px !important;
}

.gk-price-row ins,
.single-product .price ins {
    text-decoration: none !important;
    color: #d32f2f !important;
}

.gk-price-row del,
.single-product .price del {
    opacity: 0.5 !important;
    font-size: 0.6em !important;
    margin-right: 10px !important;
    font-weight: 400 !important;
}

/* Availability Status (Unified) */
.gk-availability-status,
.single-product .stock {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    color: #555 !important;
}

/* Specific colors for standard Woo classes */
.single-product .stock.instock {
    color: #2e7d32 !important;
}

.single-product .stock.out-of-stock {
    color: #d32f2f !important;
}

.single-product .stock.onbackorder {
    color: #f57c00 !important;
}

/* The Value part (Vinyl Template) */
.gk-avail-value {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #2e7d32;
}

/* Cart Button (integrated) */
.gk-add-to-cart-area {
    width: 100%;
}

.gk-add-to-cart-area form.cart {
    display: flex;
    gap: 10px;
    margin: 0;
    align-items: stretch;
}

/* Quantity Input Style */
.gk-add-to-cart-area .quantity {
    display: flex;
    align-items: center;
}

.gk-add-to-cart-area .quantity input {
    width: 60px !important;
    height: 50px !important;
    border: 2px solid #ddd !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    text-align: center !important;
    font-size: 1.1rem !important;
}

/* The Button (Targeted Globally on Single Product Pages) */
.single-product .single_add_to_cart_button {
    background-color: #1a1a1a !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 1rem !important;
    padding: 0 40px !important;
    height: 50px !important;
    border-radius: 4px !important;
    border: none !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0.5px !important;
    flex-grow: 1;
    max-width: 300px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

/* Cart Icon via CSS (Dashicons) */
.single-product .single_add_to_cart_button::before {
    content: "\f174";
    font-family: 'dashicons';
    font-size: 1.2rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
}

.single-product .single_add_to_cart_button:hover {
    background-color: #f8db46 !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Meta Signals (Stock, Cats) */
.gk-product-meta {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 20px;
    width: 100%;
}

.gk-product-meta .posted_in {
    display: block;
    margin-bottom: 5px;
}

.gk-product-meta a {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.gk-product-meta a:hover {
    background: #e0e0e0;
}

/* Standard WooCommerce Overrides for Unity */
.single-product .summary.entry-summary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Short Description Wrapper */
.gk-short-description-wrapper {
    margin-bottom: 25px;
    max-width: 90%;
}

/* The Line Clamp Magic */
.gk-short-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;

    /* Clamp to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.gk-short-description.expanded {
    -webkit-line-clamp: unset;
    /* Show all */
    overflow: visible;
}

/* The Toggle Link */
.gk-desc-toggle {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

.gk-desc-toggle:hover {
    color: #f8db46;
    /* Theme Yellow */
}

/* Payment Icons */
.gk-payment-icons {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    width: 100%;
}

.gk-secure-checkout-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.gk-payment-svgs {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Card Placeholders */
.gk-pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 10px;
    background: #fdfdfd;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #555;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.gk-payment-svgs {
    display: flex;
    gap: 20px;
    align-items: center;
}

.gk-pay-svg {
    height: 35px;
    width: auto;
    display: block;
}

.gk-pay-icon.visa {
    color: #1a1f71;
    border-color: #1a1f71;
}

.gk-pay-icon.mastercard {
    color: #eb001b;
    border-color: #eb001b;
}

.gk-pay-icon.paypal {
    color: #003087;
    border-color: #003087;
}

/* Legal/Tax Info (Now near price) */
.gk-legal-info {
    margin-top: -10px;
    /* Pull closer to price */
    margin-bottom: 5px;
    font-size: 0.75rem;
    color: #777;
    font-weight: 400;
}

.gk-shipping-link {
    color: #777;
    text-decoration: underline;
    margin-left: 5px;
}

/* --- TABS SECTION --- */
.gk-product-tabs-section {
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0;
    /* Reduced from 50px to pull it up */
    padding: 0 0 60px;
    /* Removed side padding to align with parent container */
    border-top: 1px solid #eee;
}

.gk-product-tabs-section .woocommerce-tabs ul.tabs {
    padding: 0 0 20px;
    margin: 0 0 30px;
    border-bottom: 2px solid #eee;
    list-style: none;
    display: flex;
    gap: 30px;
}

.gk-product-tabs-section .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.gk-product-tabs-section .woocommerce-tabs ul.tabs li a {
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.2s;
}

.gk-product-tabs-section .woocommerce-tabs ul.tabs li.active a {
    color: #1a1a1a;
}

.gk-product-tabs-section .woocommerce-tabs ul.tabs li.active a::after {
    content: '';
    position: absolute;
    bottom: -22px;
    /* aligns with border-bottom */
    left: 0;
    width: 100%;
    height: 2px;
    background: #f8db46;
}

.gk-product-tabs-section .woocommerce-Tabs-panel {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #444;
}

/* Clean up Payment Icons */
.gk-payment-icons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align text/icons */
    margin-top: 0;
    /* Reset auto margin */
}

.gk-payment-svgs {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.gk-pay-img {
    height: 25px;
    /* Adjust size as needed */
    width: auto;
}

/* Mobile */
/* Mobile Reordering & Alignment */
/* Mobile Reordering & Alignment */
@media (max-width: 900px) {

    /* Reduce global container side padding on mobile */
    .gk-vinyl-page-container {
        padding: 0 5px;
        /* Minimal padding for edge-to-edge feel */
    }

    .gk-hero-section-split {
        padding: 0 0 30px;
        /* Remove top padding completely */
    }

    /* Unwrap rows */
    .gk-hero-row-top,
    .gk-hero-row-bottom {
        display: contents;
    }

    /* Reorder & Spacing (Reduced gaps) */
    .gk-col-image {
        order: 1;
        width: 100%;
        flex: 0 0 auto !important;
        /* Force reset height/width constraints */
        margin-bottom: 0px !important;
        /* Kill gap between image and gallery */
        justify-content: flex-start !important;
        /* Force Left Align for Wrapper */
    }

    .gk-col-gallery {
        order: 2;
        width: 100%;
        flex: 0 0 auto !important;
        justify-content: flex-start !important;
        /* Force left align */
        margin-bottom: 15px !important;
        /* Small gap to details */
        margin-top: 0px !important;
        padding-left: 0;
        /* Align with image edge */
    }

    .gk-col-details {
        order: 3;
        width: 100%;
        flex: 0 0 auto !important;
        align-items: flex-start;
        text-align: left;
        padding-left: 0;
        /* Align perfectly with image */
        padding-right: 0;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .gk-col-payment {
        order: 4;
        width: 100%;
        flex: 0 0 auto;
        align-items: flex-start;
        padding-left: 0;
        /* Align perfectly with image */
    }

    /* Force Reordering */
    .gk-col-image {
        order: 1 !important;
    }

    .gk-col-gallery {
        order: 2 !important;
    }

    .gk-col-details {
        order: 3 !important;
    }

    .gk-col-payment {
        order: 4 !important;
    }

    /* Force left align for children in details */
    .gk-breadcrumbs-wrapper,
    .gk-product-title,
    .gk-short-description-wrapper,
    .gk-price-row,
    .gk-legal-info,
    .gk-add-to-cart-area {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
    }

    /* --- Mobile Key Fix: Size Image to fit Record Peek --- */
    /* Cover (82%) + Record slide (30%) = fits within viewport */
    .gk-sleeve-container {
        width: 85% !important;
        margin: 0 !important;
        /* STRICT Left Align (No auto centering) */
        /* right margin will be naturally filled by the peeking record */
    }

    /* --- Mobile Gallery Fix: 3 items perfectly aligned --- */
    .gk-product-gallery-strip {
        width: 85% !important;
        /* Match the Sleeve Width exactly */
        justify-content: flex-start !important;
        /* Start from left (Item 1, Item 2...) */
        gap: 2% !important;
        /* Gap calculated: 32% + 2% + 32% + 2% + 32% = 100% */
    }

    .gk-gallery-thumb {
        width: 32% !important;
        /* 3 * 32% = 96% -> 4% gap space total */
        height: auto !important;
        /* Auto height based on width */
        aspect-ratio: 1 / 1;
        /* Keep square */
    }

    .gk-breadcrumbs-wrapper {
        margin-bottom: 5px;
    }

    .gk-add-to-cart-area form.cart {
        justify-content: flex-start;
    }

    /* --- Mobile Vinyl Interactions --- */
    /* 1. Default: Peek 15% */
    .gk-vinyl-record {
        transform: translateX(15%);
    }

    /* 2. Hover: NO EFFECT on mobile (Keep 15%) */
    .gk-sleeve-container:hover .gk-vinyl-record {
        transform: translateX(15%);
    }

    /* 3. Click/Spinning: Slide to 30% and spin */
    .gk-vinyl-record.is-spinning {
        animation: gk-spin-record-mobile 3s linear infinite !important;
        /* Animation handles the transform to 30% */
    }
}

@keyframes gk-spin-record-mobile {
    from {
        transform: translateX(28%) rotate(0deg);
    }

    to {
        transform: translateX(28%) rotate(360deg);
    }
}

/* --- Sticky Add-to-Cart Bar --- */
.gk-sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(110%);
    /* Hidden by default on Desktop */
    transition: transform 0.3s ease-in-out;
    padding: 15px 0;
}

.gk-sticky-cart-bar.is-visible {
    transform: translateY(0);
}

.gk-sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sticky Info (Price + Legal) */
.gk-sticky-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gk-sticky-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.gk-sticky-price ins {
    text-decoration: none;
    color: #d32f2f;
}

.gk-sticky-price del {
    font-size: 0.7em;
    opacity: 0.6;
}

.gk-sticky-legal {
    font-size: 0.7rem;
    color: #888;
    margin-top: 3px;
}

/* Sticky Button */
#gk-sticky-trigger {
    background-color: #d32f2f;
    /* Signal Action Color */
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0 30px;
    height: 45px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#gk-sticky-trigger::before {
    content: "\f174";
    /* dashicons-cart */
    font-family: 'dashicons';
    font-size: 1.1rem;
}

#gk-sticky-trigger:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

/* Mobile Overrides (Always Visible) */
@media (max-width: 900px) {
    .gk-sticky-cart-bar {
        /* transform override removed so JS controls visibility (.is-visible) */
        padding: 12px 15px;
        /* Increased from 10px for more height */
    }

    .gk-sticky-inner {
        padding: 0;
    }

    .gk-sticky-price {
        font-size: 1.3rem;
        /* Larger */
        margin-bottom: 2px;
    }

    .gk-sticky-legal {
        display: block;
        font-size: 0.7rem;
        /* Readable legals */
        line-height: 1.1;
        opacity: 0.8;
    }

    #gk-sticky-trigger {
        padding: 0 20px;
        font-size: 0.9rem;
        /* Slightly larger text */
        height: 44px;
        /* Taller button for easier touch */
    }

    /* Ensure page content isn't covered */
    .gk-vinyl-page-container {
        padding-bottom: 90px;
        /* More clearance */
    }
}

/* --- Related Products Section --- */
.gk-related-section {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Titel Style */
.gk-related-section h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

/* Mobile Anpassungen */
@media (max-width: 900px) {
    .gk-related-section {
        margin: 10px auto 30px;
        /* Reduced top margin from 30px to 10px */
        padding-top: 20px;
        /* Reduced from 30px */
        padding-left: 10px;
        padding-right: 10px;
    }

    .gk-related-section h2 {
        font-size: 1.3rem;
        /* Kleinerer Titel für Mobile */
        margin-bottom: 20px;
    }
}