/* ==========================================================
   SINGLE PRODUCT PAGE - COMPLETE STYLES
   ========================================================== */

/* Container - ONLY for single product and similar products sections */
.single-product > .container,
.similar-products > .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== MAIN PRODUCT SECTION ===== */
section.single-product {
    padding: 60px 0;
    background: #ffffff;
    clear: both;
    position: relative;
    z-index: 1;
}

/* Target ONLY .main inside single-product, not footer */
.single-product .main {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

/* ===== GALLERY SECTION ===== */
.single-product .gallery {
    max-width: 55%;
    width: 100%;
    position: relative;
}

/* Sale Label */
.single-product .sale-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FBC333;
    color: #1C3F60;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(251, 195, 51, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Main Slider */
.single-product .singleProductSlider2 {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.single-product .singleProductSlider2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.single-product .singleProductSlider2 .swiper-slide img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.single-product .singleProductSlider2 .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons */
.single-product .singleProductSlider2 .swiper-button-next,
.single-product .singleProductSlider2 .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(28, 63, 96, 0.8);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.single-product .singleProductSlider2 .swiper-button-next:hover,
.single-product .singleProductSlider2 .swiper-button-prev:hover {
    background: #FBC333;
    color: #1C3F60;
    transform: scale(1.1);
}

.single-product .singleProductSlider2 .swiper-button-next::after,
.single-product .singleProductSlider2 .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Thumbnail Slider */
.single-product .singleProductSlider {
    width: 100%;
    height: 100px;
    margin-top: 15px;
}

.single-product .singleProductSlider .swiper-slide {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product .singleProductSlider .swiper-slide img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.single-product .singleProductSlider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #FBC333;
    box-shadow: 0 5px 15px rgba(251, 195, 51, 0.3);
}

/* Placeholder for non-logged-in users */
.single-product .image-placeholder-large {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product .image-placeholder-large .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.single-product .image-placeholder-large .btn-primary {
    background: #1C3F60;
    color: #ffffff;
}

.single-product .image-placeholder-large .btn-primary:hover {
    background: #0f2a40;
    transform: translateY(-2px);
}

.single-product .image-placeholder-large .btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.single-product .image-placeholder-large .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* ===== PRODUCT CONTENT ===== */
/* Target ONLY .content inside single-product, not footer */
.single-product .content {
    max-width: 40%;
    width: 100%;
}

.single-product .content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1C3F60;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

/* Details Grid - Target ONLY .details inside single-product */
.single-product .details {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.single-product .details p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

.single-product .details p:last-child {
    border-bottom: none;
}

.single-product .details strong {
    color: #1C3F60;
    font-weight: 600;
    font-size: 15px;
}

.single-product .product-value {
    color: #495057;
    font-weight: 500;
    font-size: 15px;
}

/* Blur effect for non-logged-in users */
.single-product .blur-value {
    filter: blur(4px);
    user-select: none;
    display: inline-block;
    background: #e9ecef;
    padding: 2px 10px;
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
}

/* ===== NON-LOGGED-IN USER PROMPT STYLES - EXACTLY LIKE IMAGE ===== */

/* ===== LOGIN PROMPT CONTAINER - WITH YELLOW BORDER/SHADOW ON HOVER ===== */

.single-product .login-prompt {
    background: linear-gradient(135deg, #1C3F60 0%, #2a4f7a 100%);
    border-radius: 20px;
    padding: 35px 30px;
    margin: 30px 0;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent; /* Transparent border by default */
    transition: all 0.3s ease;
}

/* HOVER EFFECT - Yellow border with glow */
.single-product .login-prompt:hover {
    border-color: #FBC333;
    box-shadow: 0 20px 40px rgba(251, 195, 51, 0.3);
    transform: translateY(-2px);
}

/* Decorative circles (keep as is) */
.single-product .login-prompt::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(251, 195, 51, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.single-product .login-prompt::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(251, 195, 51, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.single-product .login-prompt h4 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
}

.single-product .login-prompt p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.single-product .login-prompt .btn-primary {
    background: white;
    color: #1C3F60;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-right: 10px;
}

.single-product .login-prompt .btn-primary:hover {
    background: #FBC333;
    color: #1C3F60;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(251, 195, 51, 0.3);
}

.single-product .login-prompt .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Base button styles - the <a> tags directly */
.single-product .login-prompt .btn-primary,
.single-product .login-prompt .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
}

.single-product .login-prompt .btn-secondary:hover {
    background: #FBC333;
    color: #1C3F60;
    border-color: #FBC333;
    transform: translateY(-2px);
}

.single-product .login-prompt .login-prompt-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

/* Already have account link */
.single-product .login-prompt .login-prompt-note a {
    display: inline-block;
    padding: 5px 10px; /* Make it easier to click */
    color: #FBC333;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(251, 195, 51, 0.3);
    transition: all 0.3s ease;
}
.single-product .login-prompt .login-prompt-note a:hover {
    border-bottom-color: #FBC333;
}
/* ===== ACTION BUTTONS BELOW PROMPT ===== */
.single-product .buttons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

/* Get a Quote button */
.single-product .buttons .btn-secondary {
    background: #FBC333;
    color: #1C3F60;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    flex: 1;
    text-align: center;
}

.single-product .buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

/* Create an Account button */
.single-product .buttons .btn-primary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.single-product .buttons .btn-primary:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .single-product .login-prompt {
        padding: 30px 20px;
    }
    
    .single-product .login-prompt h4 {
        font-size: 24px;
    }
    
    .single-product .login-prompt p {
        font-size: 15px;
    }
    
    .single-product .login-prompt .btn-primary,
    .single-product .login-prompt .btn-secondary {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .single-product .buttons {
        flex-direction: column;
    }
    
    .single-product .buttons .btn-secondary,
    .single-product .buttons .btn-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .single-product .login-prompt h4 {
        font-size: 22px;
    }
    
    .single-product .login-prompt p {
        font-size: 14px;
    }
    
    .single-product .login-prompt .btn-primary,
    .single-product .login-prompt .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}


.single-product .buttons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.single-product .buttons .btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}


/* ===== ACCORDION ===== */
.single-product .accordion {
    margin: 25px 0;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.single-product .accordion-toggle {
    width: 100%;
    padding: 16px 20px;
    background: #f8f9fa;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1C3F60;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.single-product .accordion-toggle:hover {
    background: #e9ecef;
}

.single-product .accordion-icon {
    font-size: 20px;
    font-weight: bold;
    color: #FBC333;
    transition: transform 0.3s ease;
}

.single-product .accordion-toggle.active .accordion-icon {
    transform: rotate(45deg);
}

.single-product .accordion-content {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

/* ===== PRODUCT DETAILS LIST ===== */
.single-product .product-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.single-product .detail-item {
    display: flex;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dashed #e0e7ef;
}

.single-product .detail-item:last-child {
    border-bottom: none;
}

.single-product .detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #1C3F60;
    min-width: 130px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-product .detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    flex: 1;
    padding-left: 15px;
}

/* ===== SIMILAR PRODUCTS ===== */
.similar-products {
    padding: 60px 0;
    background: #f8f9fa;
    clear: both;
    position: relative;
    z-index: 1;
}

.similar-products h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1C3F60;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.similar-products h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FBC333;
    margin: 15px auto 0;
}

.similar-products .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.similar-products .product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.similar-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(251, 195, 51, 0.15);
    border-color: #FBC333;
}

.similar-products .product-card .header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.similar-products .product-card .header img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.similar-products .product-card .body {
    padding: 20px;
    text-align: center;
}

.similar-products .product-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C3F60;
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.similar-products .product-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.similar-products .btn-get-quote a {
    display: inline-block;
    padding: 8px 20px;
    background: #1C3F60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.similar-products .btn-get-quote a:hover {
    background: #FBC333;
    color: #1C3F60;
    transform: translateY(-2px);
}

/* ===== QUOTE MODAL ===== */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.quote-modal-content {
    position: relative;
    background: #ffffff;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quote-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.quote-modal-close:hover {
    color: #ff0000;
}

.quote-modal h2 {
    color: #1C3F60;
    margin-bottom: 25px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

.quote-modal .form-group {
    margin-bottom: 20px;
}

.quote-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 500;
    font-size: 14px;
}

.quote-modal .form-group input,
.quote-modal .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.quote-modal .form-group input:focus,
.quote-modal .form-group textarea:focus {
    border-color: #FBC333;
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 195, 51, 0.1);
}

.quote-modal .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-modal .form-submit {
    text-align: center;
    margin-top: 25px;
}

.quote-modal #submitQuoteRequest {
    background: #FBC333;
    color: #1C3F60;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.quote-modal #submitQuoteRequest:hover {
    background: #1C3F60;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 63, 96, 0.3);
}

.quote-modal #quoteSuccessMessage {
    text-align: center;
    padding: 20px;
}

.quote-modal #quoteSuccessMessage h3 {
    color: #1C3F60;
    margin-bottom: 10px;
    font-size: 24px;
}

.quote-modal #quoteSuccessMessage p {
    color: #666;
    font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .single-product .main {
        gap: 30px;
    }
    
    .single-product .singleProductSlider2 {
        height: 400px;
    }
    
    .single-product .content h1 {
        font-size: 28px;
    }
    
    .similar-products .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-product .main {
        flex-direction: column;
    }
    
    .single-product .gallery,
    .single-product .content {
        max-width: 100%;
    }
    
    .single-product .singleProductSlider2 {
        height: 350px;
    }
    
    .single-product .singleProductSlider {
        height: 80px;
    }
    
    .single-product .singleProductSlider .swiper-slide {
        width: 80px;
        height: 80px;
    }
    
    .single-product .content h1 {
        font-size: 26px;
    }
    
    .single-product .buttons {
        flex-direction: column;
    }
    
    .single-product .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .single-product .detail-label {
        min-width: 100%;
    }
    
    .single-product .detail-value {
        padding-left: 0;
    }
    
    .similar-products .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .single-product .singleProductSlider2 {
        height: 300px;
    }
    
    .single-product .singleProductSlider {
        height: 70px;
    }
    
    .single-product .singleProductSlider .swiper-slide {
        width: 70px;
        height: 70px;
    }
    
    .single-product .content h1 {
        font-size: 24px;
    }
    
    .similar-products .cards {
        grid-template-columns: 1fr;
    }
    
    .similar-products .product-card .header {
        height: 180px;
    }
    
    .quote-modal-content {
        padding: 30px 20px;
        margin: 10% auto;
    }
}

@media (max-width: 360px) {
    .single-product .singleProductSlider2 {
        height: 250px;
    }
    
    .single-product .singleProductSlider {
        height: 60px;
    }
    
    .single-product .singleProductSlider .swiper-slide {
        width: 60px;
        height: 60px;
    }
}

/* ===== CRITICAL: RESET ALL COMMON CLASSES FOR FOOTER ===== */
/* This prevents single-product styles from leaking into footer */

.footer .container,
.footer .main,
.footer .content,
.footer .details,
.footer .buttons,
.footer .header,
.footer .body,
.footer .cards,
.footer .product-card,
.footer .gallery,
.footer .accordion,
.footer .login-prompt,
.footer .btn,
.footer .btn-primary,
.footer .btn-secondary,
.footer .product-details-list,
.footer .detail-item,
.footer .detail-label,
.footer .detail-value,
.footer .blur-value,
.footer .product-value,
.footer .sale-label,
.footer .singleProductSlider,
.footer .singleProductSlider2,
.footer .swiper,
.footer .swiper-wrapper,
.footer .swiper-slide,
.footer .image-placeholder-large,
.footer .quote-modal,
.footer .quote-modal-content {
    all: revert !important;
}

/* Ensure footer grid layout works properly */
.footer .content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
    gap: 40px !important;
    max-width: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Reset footer headings */
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
    all: revert;
}

/* Reset footer paragraphs and lists */
.footer p,
.footer ul,
.footer li,
.footer a {
    all: revert;
}

/* Reset footer social icons */
.footer .footer-socials {
    all: revert;
}

.footer .footer-socials a {
    all: revert;
}

/* Reset footer menu */
.footer .footer-menu {
    all: revert;
}

.footer .footer-menu li {
    all: revert;
}

.footer .footer-menu a {
    all: revert;
}



/* ===== FORCE BUTTONS TO BE CLICKABLE ===== */
.single-product .login-prompt .login-prompt-buttons a {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
    display: inline-block;
    cursor: pointer !important;
}

.single-product .login-prompt .login-prompt-buttons a.btn-primary,
.single-product .login-prompt .login-prompt-buttons a.btn-secondary {
    pointer-events: auto !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

/* ===== MOBILE BUTTON SPACING FIX ===== */
@media (max-width: 768px) {
    .single-product .login-prompt .login-prompt-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }
    
    .single-product .login-prompt .btn-primary,
    .single-product .login-prompt .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        padding: 16px 20px;
        font-size: 16px;
    }
    
    /* Fix the "Already have an account" section */
    .single-product .login-prompt .login-prompt-note {
        margin-top: 20px;
        font-size: 15px;
    }
    
    .single-product .login-prompt .login-prompt-note a {
        padding: 8px 5px;
        display: inline-block;
    }
    
    /* Get a Quote button spacing */
    .single-product .buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .single-product .buttons .btn-secondary,
    .single-product .buttons .btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }
}
