:root {
    --Satr-white: #FCFAFA;
    /* Soft cream instead of pure white */
    --Satr-red: #C41E3A;
    /* Slightly deeper, less "neon" red */
    --Satr-light-gray: #F2F0EF;
    --Satr-text: #2D2D2D;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
}

.Satr-hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)),
        url('../../../images/satr_ketchup.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.Satr-hero h1 {
    font-size: 3.5rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.Satr-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.Satr-story {
    padding: 5rem 10%;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--Satr-light-gray);
}

.Satr-story-text {
    flex: 1;
}

.Satr-story-text h2 {
    color: var(--Satr-red);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.Satr-story-text p {
    color: var(--Satr-text);
    line-height: 1.8;
}

.Satr-story-image {
    flex: 1;
    border: 3px solid var(--Satr-red);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
}

.Satr-story-image img {
    width: 100%;
    display: block;
}

.product-showcase {
    padding: 5rem 5%;
    text-align: center;
    background: var(--Satr-white);
}

.product-showcase h2 {
    color: var(--Satr-red);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.Satr-product-card {
    background: var(--Satr-white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 2px solid #eee;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.Satr-product-card:hover {
    border-color: var(--Satr-red);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15);
}

.Satr-product-card h3 {
    color: var(--Satr-text);
}

.Satr-product-card p {
    color: #666;
}

.Satr-product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.serving-ideas {
    padding: 5rem 10%;
    background: linear-gradient(to bottom, #111, #1a1a1a);
}

.idea-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.idea-item {
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.idea-item:hover {
    border-color: var(--Satr-red);
}

/* Tabs Styling */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    border: 2px solid var(--Satr-red);
    background: transparent;
    color: var(--Satr-red);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    background: var(--Satr-red);
    color: white;
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .Satr-story {
        flex-direction: column-reverse;
        text-align: center;
    }

    .product-tabs {
        flex-direction: column;
        padding: 0 10%;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 5%;
    }

    .Satr-product-card {
        display: flex;
        align-items: center;
        text-align: right;
        padding: 1rem;
        gap: 1.5rem;
        border-radius: 25px;
    }

    .Satr-product-card img {
        width: 140px;
        /* Larger clearer image */
        height: 140px;
        margin-bottom: 0;
        flex-shrink: 0;
        border-radius: 15px;
        object-fit: contain;
        /* Better clarity for product bottles */
        background: #fdfdfd;
    }

    .Satr-product-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        color: var(--Satr-red);
    }

    .Satr-product-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .size-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        display: inline-block;
    }
}

.size-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--Satr-red), #8B0000);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.size-badge.hot {
    background: linear-gradient(135deg, #FF4500, #CC3300);
}

.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.product-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 35px;
    max-width: 900px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--Satr-red);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.modal-image.ketchup-bg {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 0, 0, 0.05));
}

.modal-image.hotsauce-bg {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(204, 51, 0, 0.05));
}

.modal-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 25px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.modal-info {
    padding: 3rem;
}

.modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--Satr-red), #8B0000);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.modal-badge.hot {
    background: linear-gradient(135deg, #FF4500, #CC3300);
}

.modal-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.modal-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(196, 30, 58, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--Satr-red);
}

.feature-item.hot {
    background: rgba(255, 69, 0, 0.08);
    color: #FF4500;
}

.usage-ideas {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.usage-ideas h4 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.usage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.usage-item {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--Satr-red), #8B0000);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.modal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        border-radius: 30px 30px 0 0;
        padding: 1.5rem;
    }

    .modal-info {
        padding: 2rem;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }
}
