/** Shopify CDN: Minification failed

Line 73:1 Expected "}" to go with "{"

**/
/* Common styles for desktop and mobile */
#mainWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1380px; /* Adjust as needed */
    margin-left: auto;
    margin-right: auto;
}

#maincolumn { }

#headerRow, #descriptionRow, #videoRow {
    text-align: center;
    margin-bottom: 20px;
}

#headerRow {
    margin-top: 20px;
    font-size: 26px;
      word-wrap: break-word; /* Ensure long words break */
    text-align: center;
    padding-left: 10px; /* Add padding for mobile */
    padding-right: 10px;
}

/* Responsive video wrapper */
.nucu-video-wrapper {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 80%;
    max-width: 360px; /* Adjust as needed for desktop */
    background: #000;
    margin: 0 auto;
}

.nucu-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Desktop-specific adjustments */
@media screen and (min-width: 768px) {
    #videoRow {
        display: flex;
        justify-content: center; /* Center the content */
    }

 /* Desktop-specific adjustments */
@media screen and (min-width: 768px) {
    #videoRow {
        display: flex;
        justify-content: center; /* Center the content */
    }

    #videoRow .nucu-video-wrapper {
        width: 300px; /* Set explicit width for desktop */
        height: auto; /* Allow height to scale */
        padding-bottom: 533px; /* Maintain 9:16 ratio explicitly */
        max-width: 400px; /* Limit the maximum size */
    }
}