.div-logo-kg {
    margin: 17px;
    padding: 20px;
    text-align: center;
}

.div-logo-goold {
    margin: 17px;
    padding: 20px;
    text-align: center;
}

@font-face {
    font-family: 'Loos Wide';
    /* Name to use in CSS */
    src: url('../fonts/Loos-Wide-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova Condensed';
    /* Name to use in CSS */
    src: url("../fonts/Proxima-Nova-Condensed-Extrabold.otf") format("opentype");
    font-weight: 800;
    /* Extrabold */
    font-style: normal;
}

/* Import Pacifico from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

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

body {
    font-family: 'Proxima Nova Condensed', sans-serif;
    /* Default font */
    background-color: #4a1a7a;
    /* Fallback color */
    /* TODO: Add the actual purple texture background if available as an image */
    color: #333;
    display: flex;
    /* Use flexbox for centering */
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center container horizontally */
    min-height: 100vh;
    padding: 20px 0; /* Adjusted padding for mobile */
    position: relative;
    /* Needed for fixed sidebars */
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.sidebar-left,
.sidebar-right {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    /* Rotate text to read top-down */
    font-family: 'Loos Wide', sans-serif;
    /* Use Loos Wide */
    font-size: 7em;
    /* Adjusted size based on reference */
    font-weight: bold;
    color: #ff00ff;
    /* Bright pink color */
    white-space: nowrap;
    /* Prevent text wrapping */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* Distribute text evenly */
    height: 90vh;
    /* Adjust height relative to viewport - make taller */
    position: fixed;
    /* Fix position relative to viewport */
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    /* Center vertically and rotate */
    z-index: 0;
    /* Behind container */
}

.sidebar-left {
    left: 100px;
    /* Position further from left */
}

.sidebar-right {
    right: 100px;
    /* Position further from right */
}


.sidebar-left span,
.sidebar-right span {
    display: block;
    /* Ensure spans take block space */
    margin: 25px 0;
    /* Increased vertical spacing */
}

/* Use Bootstrap container class instead */
/* .container {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 780px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
} */

/* Apply Bootstrap container styles */
.container {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 25px;
    position: relative;
    z-index: 1;
    max-width: 780px; /* Keep max-width */
    margin-left: auto;
    margin-right: auto;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content horizontally */
}

header {
    padding: 30px 20px 5px 20px;
    /* Adjusted padding */
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    /* Increased margin below header */
}

header h1 {
    font-family: 'Proxima Nova', sans-serif;
    /* Use Proxima Nova */
    font-size: 8em;
    /* Adjusted base size */
    color: #4a1a7a;
    /* Dark purple */
    margin-bottom: -50px;
    /* Adjusted overlap */
    line-height: 1;
    font-weight: 800;
    /* Extrabold */
    position: relative;
    display: inline-block;
    /* Allow relative positioning for cursive text */
    z-index: 2;
    /* Ensure LINKS is above cursive */
}

header h1 span.cursive {
    font-family: 'Pacifico', cursive;
    font-size: 0.4em;
    /* Adjusted size relative to h1 */
    color: #ff00ff;
    /* Bright pink */
    position: absolute;
    top: 50%;
    /* Fine-tune vertical position */
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    /* Center and slightly rotate more */
    white-space: nowrap;
    font-weight: normal;
    z-index: 1;
    /* Ensure cursive is below LINKS */
}

header p {
    font-family: 'Proxima Nova Condensed', sans-serif;
    /* Use Proxima Nova */
    color: #ff00ff;
    font-size: 0.9em;
    /* Slightly smaller */
    margin-top: 10px;
    /* Adjust margin */
}

/* Remove custom grid styles, use Bootstrap grid */
/* .products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 15px;
    padding: 20px 0;
    width: 100%;
} */

.products {
    padding: 20px 0;
    width: 100%;
}

/* Adjust product card for Bootstrap columns */
.product-card {
    text-align: center;
    background-color: #fff;
    padding: 10px 5px;
    /* Reduced padding */
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border 0.2s ease-in-out;
    border: 1px solid transparent;
    margin-bottom: 20px; /* Add margin for spacing in columns */
    height: 100%; /* Make cards in a row equal height */
    display: flex; /* Use flexbox for vertical alignment */
    flex-direction: column;
}

.product-card a {
    text-decoration: none;
    color: inherit; /* Inherit text color */
    display: flex; /* Allow flex alignment within link */
    flex-direction: column;
    flex-grow: 1; /* Allow link to grow */
}

.product-card img {
    max-width: 100%;
    /* Allow image to fill width if needed */
    max-height: 90px;
    /* Adjusted max height */
    height: 90px;
    /* Fixed height */
    object-fit: contain;
    /* Ensure image aspect ratio is maintained */
    margin-bottom: 8px;
    /* Adjusted margin */
    display: block;
    /* Ensure block display for centering */
    margin-left: auto;
    margin-right: auto;
}

.product-name {
    font-family: 'Proxima Nova Condensed', sans-serif;
    /* Use Proxima Nova */
    font-weight: 800;
    /* Extrabold */
    margin-bottom: 3px;
    /* Adjusted margin */
    color: #4a1a7a;
    font-size: 0.85em;
    /* Adjusted size */
    text-transform: uppercase;
    line-height: 1.2;
}

.product-desc {
    font-family: 'Proxima Nova Condensed', sans-serif;
    /* Use Proxima Nova */
    font-size: 0.75em;
    /* Adjusted size */
    color: #666;
    margin-bottom: 8px;
    /* Adjusted margin */
    min-height: 2em;
    /* Adjust min-height */
    text-transform: uppercase;
    /* Match style */
    line-height: 1.2;
    flex-grow: 1; /* Allow description to push price down */
}

.product-price {
    font-family: 'Proxima Nova Condensed', sans-serif;
    /* Use Proxima Nova */
    color: #ff00ff;
    font-weight: 800;
    /* Extrabold */
    font-size: 1.1em;
    /* Adjusted size */
    margin-top: auto; /* Push price to bottom */
}

.product-card:hover {
    transform: scale(1.07);
    /* Slightly larger scale */
    box-shadow: 0 10px 20px rgba(74, 26, 122, 0.3);
    /* More pronounced purple shadow */
    border: 1px solid #8a2be2;
    /* Brighter purple border */
    cursor: pointer;
}

footer {
    padding: 20px 20px 10px 20px;
    /* Adjusted padding */
    text-align: center;
    width: 100%;
    margin-top: 25px;
    /* Increased Space above footer */
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* Space between logos */
}

.footer-logo {
    max-height: 40px;
    /* Adjust logo size */
    width: auto;
}

/* --- Responsiveness --- */
/* Remove fixed positioning for sidebars on smaller screens */
@media (max-width: 1350px) {

    /* Adjust breakpoint for sidebars */
    body {
        flex-direction: column;
        /* Stack elements vertically */
        padding: 20px 0; /* Adjusted padding */
        align-items: stretch;
        /* Allow sidebars to take width */
    }

    .sidebar-left,
    .sidebar-right {
        writing-mode: horizontal-tb;
        /* Horizontal text */
        transform: rotate(0deg);
        /* No rotation */
        font-size: 2.8em;
        height: auto;
        /* Auto height */
        margin: 25px 0;
        /* Vertical margin */
        width: 100%;
        text-align: center;
        justify-content: center;
        flex-direction: row;
        /* Arrange spans horizontally */
        gap: 30px;
        position: static;
        /* Remove fixed positioning */
        transform: none;
        /* Reset transform */
        z-index: 1;
    }

    .container {
        max-width: 95%; /* Allow container to be wider */
        order: 0;
        padding: 15px; /* Reduce padding slightly */
    }

    .sidebar-left {
        order: -1;
    }

    /* Place CABELOS above */
    .sidebar-right {
        order: 1;
    }

    /* Place CORPO below */

    /* Bootstrap handles grid columns now */
    /* .products {
        grid-template-columns: repeat(4, 1fr);
    } */
}

@media (max-width: 992px) {
    /* Bootstrap handles grid columns now */
    /* .products {
        grid-template-columns: repeat(3, 1fr);
    } */

    header h1 {
        font-size: 6em; /* Adjust header size */
        margin-bottom: -40px;
    }

    header h1 span.cursive {
        font-size: 0.35em;
    }
}

@media (max-width: 768px) {
    /* Bootstrap handles grid columns now */
    /* .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 10px;
    } */

    header h1 {
        font-size: 4em;
        margin-bottom: -30px;
    }

    header h1 span.cursive {
        font-size: 0.4em;
    }

    .sidebar-left,
    .sidebar-right {
        font-size: 2.2em;
        gap: 20px;
    }

    .logo-kg {
        width: 35%;
        padding: 15px 0;
    }

    .logo-goold {
        width: 30%;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {

      /* Adjust breakpoint for sidebars */
      body {
        padding: 10px 0; /* Further reduce body padding */
      }

    .container {
        padding: 10px; /* Reduce container padding */
        border-radius: 15px; /* Less rounded corners */
    }

    /* Bootstrap handles grid columns now */
    /* .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    } */

    header h1 {
        font-size: 3em; /* Smaller header */
        margin-bottom: -20px;
    }

    header h1 span.cursive {
        font-size: 0.4em;
    }

    header p {
        font-size: 0.8em;
    }

    .video-section p {
        font-size: 1em !important; /* Ensure copy text is readable */
    }

    .product-card {
        padding: 8px 4px;
    }

    .product-name {
        font-size: 0.8em;
    }

    .product-desc {
        font-size: 0.7em;
        min-height: 1.8em;
    }

    .product-price {
        font-size: 0.95em;
    }

    .sidebar-left,
    .sidebar-right {
        font-size: 1.6em; /* Smaller sidebar text */
        gap: 15px;
        margin: 15px 0;
    }

    .footer-logos {
        gap: 20px;
    }

    .footer-logo {
        max-height: 30px;
    }

    .logo-kg {
        width: 15%; /* Adjust logo size */
        padding: 0px;
    }

    .logo-goold {
        width: 50%; /* Adjust logo size */
        padding: 0px;
    }
}

/* Style for KG Logo */
.logo-kg {
    width: 20%;
    text-align: left;
    padding: 20px 0;

}


/* Style for KG Logo */
.logo-goold {
    width: 40%;
    text-align: left;
    padding: 20px 0;

}

/* Add styles for video section */
.video-section video {
    max-width: 100%;
    height: auto;
}



/* Styles for Products Title */
.products-title {
    font-family: 'Proxima Nova Condensed', sans-serif;
    font-weight: 800; /* Extrabold */
    font-size: 2.5em;
    color: #4a1a7a; /* Dark purple */
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Styles for Copy Text below video */
.copy-text {
    font-family: 'Pacifico', cursive; /* Use Pacifico font */
    color: #4a1a7a; /* Dark purple */
    font-size: 1.5em; /* Larger font size */
    text-align: center;
    margin-top: 20px;
    padding: 0 15px; /* Add some horizontal padding */
}

/* Adjustments for mobile */
@media (max-width: 768px) {
    .products-title {
        font-size: 2em;
    }
    .copy-text {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .products-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .copy-text {
        font-size: 1.2em;
        margin-top: 15px;
    }
}

