/*
Theme Name: High Protein Milk
Theme URI: https://yourdomain.com/
Author: Your Name
Author URI: https://yourdomain.com/
Description: Custom theme for High Protein Milk
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: high-protein-milk
Tags: custom, responsive, bootstrap
*/

body { font-family: 'Lato', sans-serif; background: #f8fbf9; color: #000; }

/* Begin migrated custom CSS from index.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #f8fbf9;
    color: #000000;
    overflow-x: hidden;
    height: auto;
    min-height: 100%;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
}

.hero-section {
    position: relative;
    height: auto;
    min-height: 500px;
    background: linear-gradient(135deg, #b2deb4 0%, #204a22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(0,0,0,0.1)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)" opacity="0.3"/><circle cx="800" cy="300" r="150" fill="url(%23grad)" opacity="0.2"/><circle cx="500" cy="700" r="120" fill="url(%23grad)" opacity="0.25"/></svg>') no-repeat center center;
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
    to { box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 700px) {
    .hero-section {
        height: auto;
        min-height: 400px;
        padding: 2rem 0.75rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 1rem;
        word-wrap: break-word;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 0.8rem;
    }
}

.section {
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #204a22;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #b2deb4, #204a22);
    border-radius: 2px;
}

.usp-card {
    background: white;
    border: none;
    box-shadow: none;
    text-align: center;
    padding: 1rem;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(32, 74, 34, 0.1);
}

.usp-icon {
    background-color: #D1E8D2;
    color: #204a22;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.usp-title {
    color: #204a22;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #022904 0%, #3b8d3f 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(32, 74, 34, 0.3);
}

.nutrition-card {
    background: #e8f0e9;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(32, 74, 34, 0.1);
    text-align: center;
}

.nutrition-header {
    color: #204a22;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.nutrition-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d0d0d0;
}

.nutrition-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.nutrition-label {
    flex: 1;
    text-align: left;
}

.nutrition-main-label {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.nutrition-sub-label {
    color: #666;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.nutrition-value {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
    text-align: right;
    min-width: 60px;
}

.nutrition-comparison {
    font-size: 0.85rem;
    color: #6f9471;
    font-style: italic;
    margin-top: 0.2rem;
    text-align: left;
}

.highlight-value {
    color: #204a22;
    font-weight: 700;
}

.calcium-note {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

.team-section {
    background: linear-gradient(135deg, #eef8ef 0%, #e9ecef 100%);
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .team-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.team-text p {
    margin-bottom: 1.5rem;
}

.pricing-section {
    background: white;
    color: black;
    padding: 0rem 0;
}

.pricing-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

/* Mobile Slider Styles */
.pricing-slider-container {
    display: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
    overflow: visible;
    padding: 0 1rem;
}

.pricing-slider {
    display: flex;
    transition: transform 0.3s ease;
    width: 300%;
    overflow: visible;
}

.pricing-slide {
    width: 33.333%;
    flex-shrink: 0;
    padding: 20px 5px 0;
    overflow: visible;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #204a22;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 280px;
    min-width: 200px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(32, 74, 34, 0.2);
}

.pricing-card.popular {
    border-color: #204a22;
    border-width: 2px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: #204a22;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #204a22;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 1rem 0;
    color: #204a22;
}

.price-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.save-badge {
    background: #204a22;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0.5rem 0;
    display: inline-block;
}

.free-shipping {
    background: #204a22;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
}

.faq-section {
    background: #eaf0ed;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: #204a22;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: #204a22;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.preorder-container {
    max-width: 650px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.preorder-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.premium-waiting-list {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
    border: 2px solid #b2deb4;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(32, 74, 34, 0.15);
    position: relative;
    overflow: visible;
}

.premium-icon-container {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #204a22 0%, #3b8d3f 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(32, 74, 34, 0.3);
}

.premium-icon {
    color: white;
    font-size: 1.2rem;
}

.preorder-header {
    background: #eaeeef;
    color: #204a22;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.premium-header {
    background: linear-gradient(135deg, #b2deb4 0%, #d1e8d2 100%);
    border-bottom: 1px solid #b2deb4;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.preorder-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.premium-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #204a22;
}

.premium-subtitle {
    font-size: 1rem;
    color: #26522a;
    margin: 0;
    font-weight: 400;
}

.preorder-body {
    padding: 1.5rem;
    text-align: center;
}

.premium-body {
    padding: 2rem 1.5rem;
}

.preorder-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1.5rem;
}

.premium-content {
    margin-bottom: 2rem;
}

.premium-feature-box {
    background: linear-gradient(135deg, #f0f9f1 0%, #e8f5e9 100%);
    border: 1px solid #b2deb4;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.premium-feature-icon {
    color: #204a22;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.premium-contact-section {
    margin: 1.5rem 0;
}

.premium-contact-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.premium-phone-display {
    background: linear-gradient(135deg, #204a22 0%, #3b8d3f 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(32, 74, 34, 0.2);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.phone-number {
    color: #204a22;
    font-weight: 600;
}

.premium-phone {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.warning-text {
    background: #d0ecd3;
    border: 1px solid #d0ecd3;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #26522a;
}

.premium-warning-text {
    background: linear-gradient(135deg, #fff3cd 0%, #fef3e2 100%);
    border: 1px solid #f0c674;
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.warning-icon {
    color: #856404;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.warning-content {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
}

.premium-cta-button {
    background: linear-gradient(135deg, #204a22 0%, #3b8d3f 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(32, 74, 34, 0.3);
}

.premium-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.premium-cta-button:hover::before {
    left: 100%;
}

.premium-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(32, 74, 34, 0.4);
    color: white;
    text-decoration: none;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.premium-cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.footer {
    background: #000000;
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: #b2deb4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-links a:hover {
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
    background: transparent;
    border-radius: 50%;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #000;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold-members-section {
    background: #d1e8d2;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.gold-member-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gold-member-text {
    width: 100%;
}

.gold-members-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold-member-card {
    text-align: center;
}

.gold-member-card .usp-icon {
    background-color: #204a22;
    color: white;
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .section {
        padding: 1.5rem 0.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .pricing-container {
        display: none;
    }

    .pricing-slider-container {
        display: block;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 0 0.5rem;
        overflow: visible;
    }

    .pricing-slider {
        width: 300%;
        max-width: 300vw;
    }

    .pricing-slide {
        width: 33.333%;
        flex-shrink: 0;
        padding: 20px 0.25rem 0;
        box-sizing: border-box;
        overflow: visible;
    }

    .pricing-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        margin: 0 auto;
        padding: 1rem 0.75rem;
        box-sizing: border-box;
        font-size: 0.9rem;
    }

    .pricing-card h3 {
        font-size: 1.1rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .hero-content {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .preorder-container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .nutrition-card {
        margin: 2rem auto;
        padding: 1.5rem;
        max-width: 350px;
    }

    .nutrition-header {
        font-size: 1.3rem;
    }

    .nutrition-item {
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .nutrition-main-label {
        font-size: 0.95rem;
    }

    .nutrition-sub-label {
        font-size: 0.85rem;
    }

    .nutrition-comparison {
        font-size: 0.8rem;
    }

    .team-content {
        gap: 1.5rem;
    }

    .usp-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .steps-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .gold-members-grid {
        gap: 1.5rem;
    }

    .gold-members-section {
        padding: 2rem 1rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .premium-feature-box {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .premium-phone-display {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .premium-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .save-badge, .free-shipping {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .gold-member-content {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .gold-member-content .usp-icon {
        flex-shrink: 0;
        margin: 0;
    }

    .gold-member-text {
        flex: 1;
    }

    .gold-member-text .usp-title {
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .gold-member-text p {
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* (Insert ALL remaining CSS from index.html here, including all media queries and styles for slider, table, FAQ, modal, etc.) */

/* --- End migrated CSS --- */

/* End migrated custom CSS */

