﻿@font-face {
    font-family: 'Filson Pro';
    src: url('/fonts/FilsonPro-Regular.woff2') format('woff2'), url('/fonts/FilsonPro-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

/* Single, consistent :root block */
:root {
    font-family: 'Filson Pro', sans-serif;
    font-style: normal;
}

body {
    font-family: inherit;
    font-style: normal;
}


.container-frozengoods {
    max-width: 100%;
    margin: 30px;
    padding: 0  90px;
}


.modal-header {
    font-family: 'Filson Pro' ;
    background-color: #FBB01E;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

    .modal-header h2 {
        font-family: 'Filson Pro' ;
        margin: 0;
        font-size: 18px;
        font-weight: bold;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    font-family: 'Filson Pro' !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .modal.show {
        opacity: 1;
    }

.modal-content {
    font-family: 'Filson Pro';
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 0; /* remove original padding */
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    overflow: hidden; /* ensure header and footer rounded corners */
}

.modal-body {
    font-family: 'Filson Pro' ;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px; /* add padding back for body */
}

.modal-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.modal-text {
    flex: 1;
}

    .modal-text h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 12px;
    }

    .modal-text p {
        font-size: 15px;
        margin: 6px 0;
        color: #333;
    }

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 600px) {
    .modal-content{
        margin: 0;
    }
   

    .modal-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .modal-image img {
        max-width: 80%;
    }
}
#productFrozen {
    font-size: 16px;
   
    display: inline;
}
.modal,
.modal-footer,
.modal-text h3,
.modal-text p {
    font-family: 'Filson Pro' !important;
}

.modal-footer {
    margin: 0;
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-family: 'Filson Pro' !important;
    background-color: #223532;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    .modal-footer p {
        margin: 0;
        font-size: 20px;
        line-height: 1.5;
    }

    .modal-footer .highlight {
        color: #8ac441; /* Grape green */
        font-weight: bold;
    }

    .modal-footer small {
        display: block;
        font-size: 12px;
        margin-top: 4px;
        color: #ccc;
    }



/* Large devices (desktops, ≥900px) */
@media (min-width: 1400px) {
    .modal-content {
        max-width: 600px;
    }

    .modal-text h3 {
        font-size: 22px;
    }

    .modal-text p {
        font-size: 16px;
    }
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr)); /* Slightly smaller grid columns */
    gap: 20px; /* Reduced gap between cards */
    padding: 50px 0;
    margin-left: 10px;
}

.product-card {
    width: 75%; /* Reduce the width of the card */
    max-width: 280px; /* Optional: set a maximum width for the card */
    border-radius: 20px; /* Slightly smaller border radius */
    background-color: #ffffff;
    padding: 12px; /* Reduced padding inside the card */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 330px; /* Reduced min-height for a smaller card */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Smaller shadow for a cleaner look */
    transition: background-color 0.3s ease; /* Smooth transition for color change */
    margin-bottom: 80px;
}

    .product-card:hover {
        background-color: #ffe28f; /* Yellow color on hover */
    }

    /* Active (clicked) effect */
    .product-card:active {
        background-color: #ffe28f; /* Keeps the yellow color when clicked */
    }

    .product-card.yellow {
        background-color: #ffe28f;
    }




.product-image {
    width: 100%;
    height: 150px; /* Reduced height of the image container */
    margin: 15px 0; /* Reduced margin */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .product-image img {
        width: auto;
        height: 100%;
        object-fit: contain;
    }

.product-title {
    font-size: 18px; /* Slightly smaller font size */
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px; /* Reduced margin */
    text-align: center;
}

.product-info {
    font-size: 12px; /* Smaller font size for the info */
    color: #000000;
    margin-top: -1px;
}



.footer {
    background-color: #2d3d3f;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.footer-tagline {
    font-size: 70px;
    font-family: 'Filson Pro';
    font-weight: 500;
    line-height: 84px;
    margin-bottom: 20px;
}

    .footer-tagline span {
        color: #b0f963;
    }

.footer-subtitle {
    font-size: 25px;
    font-family: 'Filson Pro';
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
}
.action-buttons {
    display: flex;
    gap: 45px;
    margin-top: 60px;
    justify-content: center;
}

.about-btn {
    background-color: #a698ea;
    border-radius: 12px;
    padding: 16px 54px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .about-btn:hover {
        background-color: #b1a0ff;
    }

.contact-btn4 {
    background-color: transparent;
    border-radius: 12px;
    padding: 16px 44px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #2c3c3d;
    border: 2px solid #b1a0ff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .contact-btn4:hover {
        background-color: #b1a0ff;
        color: #ffffff;
    }
.copyright {
    background-color: #a698ea;
    color: #ffffff;
    padding: 13px 0;
    text-align: center;
    font-family: 'Filson Pro';
    font-size: 18px;
    font-weight: 400;
}

/* Default layout (for 1025px and up) */
@media screen and (min-width: 1025px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-card {
        width: 90%;
    }
}


/* Large tablets and small laptops (901px–1024px) */
@media screen and (min-width: 901px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
   

    .product-card {
        width: 90%;
    }
}

/* Tablets and small devices (601px–900px) */
@media screen and (min-width: 601px) and (max-width: 767px) {
    .about-btn {
        background-color: #a698ea;
        border-radius: 12px;
        padding: 16px 30px !important;
        font-size: 20px !important;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .container-frozengoods {
        margin: 10px !important;
        padding: 0px;
    }

    .product-card {
        width: 90%;
    }
    .product-image img {
        width: 100% !important;
        height: 100%;
        object-fit: contain;
    }
}
/* Tablets and small devices (601px–900px) */
@media screen and (min-width: 601px) and (max-width: 900px) {
    .about-btn {
        background-color: #a698ea;
        border-radius: 12px;
        padding: 16px 30px !important;
        font-size: 20px !important;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .container-frozengoods {
        margin: 10px !important;
        padding: 0px;
    }

    .product-card {
        width: 90%;
    }
}

/* Mobile devices (max-width: 600px) */
@media screen and (max-width: 600px) {
    .about-btn {
        background-color: #a698ea;
        border-radius: 12px;
        padding: 16px 30px !important;
        font-size: 20px !important;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .container-frozengoods {
        margin: 10px;
        padding: 0;
    }

    .product-card {
        width: 100%;
        margin: 10px 0;
        padding: 8px;
    }

   
}

/* Extra small devices (max-width: 500px) */
@media screen and (max-width: 500px) {


    .about-btn {
        background-color: #a698ea;
        border-radius: 12px;
        padding: 16px 30px !important;
        font-size: 20px !important;
        
    }
    .product-image {
        margin: 0;
        padding: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 10px;
    }

    .product-card {
        margin-bottom: 0 !important;
        padding: 0;
        width: 90%;
        padding: 10px;
        font-size: 14px;
        min-height: 150px !important;
    }

    .product-image img {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .product-title {
        font-size: 14px;
        margin-top: 8px;
        text-align: center;
    }

    .product-info {
        font-size: 12px;
        text-align: center;
    }
}

/* Footer text size adjustments (optional based on design) */
@media (max-width: 768px) {
    .about-btn {
        background-color: #a698ea;
        border-radius: 12px;
        padding: 16px 30px !important;
        font-size: 20px !important;
    }
    .footer-tagline {
        font-size: 40px;
        line-height: 48px;
    }

    .footer-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    .product-card {
        width: 90%;
    }
}
