@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic+Guides&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic+Guides&family=Roboto:ital,wght@0,100..900;1,100..900&family=Story+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.main {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
    /* Remove the static background image */
}

/* Create a slider container for background images */
.main .slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.main .slider-slide.active {
    opacity: 1;
}

/* Slider indicators */
.main .slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
}

.main .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main .slider-dot.active {
    background-color: #cf8109;
}

/* Keep all your existing header and text styles */
.main .header {
    /* background-color: blue; */
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.main .header .logo {
    width: 15%;
    height: 70px;
    margin: 0 0 0 40px;
}

.main .header .logo img {
    width: 80%;
    height: 100%;
}

.main .header .option {
    width: 50%;
    height: 70px;
    display: flex;
    justify-content: center;
    gap: 5%;
    align-items: center;
}

.main .header .option #option-font {
    color: white;
    width: 15%;
    height: 50%;
    font-weight: bolder;
    margin-top: 15px;
    -webkit-text-stroke: 1px rgb(122, 121, 118);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.main .header .option #option-font a {
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: wheat;
}

/* Hover effect for navigation items */
.main .header .option #option-font:hover {
    transform: translateY(-2px);
}

.main .header .option #option-font:hover a {
    color: #cf8109;
    text-shadow: 0 0 10px rgba(207, 129, 9, 0.5);
}

/* Optional: Add underline animation */
.main .header .option #option-font a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #cf8109;
    transition: width 0.3s ease;
}

.main .header .option #option-font:hover a::after {
    width: 100%;
}

/* Active state for current page */
.main .header .option #option-font.active a {
    color: #cf8109;
}

.main .header .option #option-font.active a::after {
    width: 100%;
}

.main .text-main {
    width: 30%;
    height: 50%;
    position: relative;
    left: 8%;
    z-index: 2;
    width: 50%;
}

.main .text-main .heading {
    display: flex;
    align-items: center;
    position: relative;
    top: 28%;
    font-weight: bolder;
}

.main .text-main .heading a {
    color: #cf8109;
    font-size: 25px;
    text-decoration: none;
}

.main .text-main .main-line {
    position: relative;
    top: 28%;
}

.main .text-main .main-line a {
    color: rgb(255, 255, 255);
    font-size: 70px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic;
    font-weight: bolders;
    text-decoration: none;
}

.main .shop-learn {
    width: 40%;
    height: 15%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    left: 7%;
    z-index: 2;
}

.main .shop-learn .shop-now {
    background-color: #462e12;
    width: 35%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main .shop-learn .shop-now a {
    font-size: 25px;
    color: #ffffff;
    font-weight: bolder;
    font-family: sans-serif;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Hover effect for Shop Now button */
.main .shop-learn .shop-now:hover {
    background-color: transparent;
    border: 2px solid #eddab2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.main .shop-learn .shop-now:hover a {
    color: #eddab2;
}

/* Optional: Add a subtle shine effect on hover */
.main .shop-learn .shop-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 218, 178, 0.2), transparent);
    transition: left 0.5s ease;
}

.main .shop-learn .shop-now:hover::before {
    left: 100%;
}

/* Active state for click feedback */
.main .shop-learn .shop-now:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.main .shop-learn .learn-more {
    width: 35%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    margin-right: 15%;
    cursor: pointer;
}

.main .shop-learn .learn-more a {
    font-size: 25px;
    color: #eddab2;
    font-weight: bolder;
    font-family: sans-serif;
    text-decoration: none;
}
/* Search and Filter Section */
.search-filter-section {
    background-color: #111;
    padding: 30px 0;
    border-bottom: 1px solid #222;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    background-color: #222;
    border-radius: 50px;
    padding: 0 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.search-bar i {
    color: #888;
    font-size: 18px;
    margin-right: 15px;
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    color: #eddab2;
    font-size: 16px;
    padding: 15px 0;
    outline: none;
    font-family: 'Roboto', sans-serif;
}

.search-bar input::placeholder {
    color: #888;
}

.clear-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    display: none;
}

.clear-btn i {
    font-size: 16px;
}

.filter-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-tag {
    padding: 8px 20px;
    background-color: transparent;
    color: #eddab2;
    border: 1px solid #444;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.filter-tag:hover {
    background-color: rgba(207, 129, 9, 0.1);
    border-color: #cf8109;
}

.filter-tag.active {
    background-color: #cf8109;
    color: #fff;
    border-color: #cf8109;
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    color: #aaa;
    font-family: 'Roboto', sans-serif;
}

.sort-options select {
    background-color: #222;
    color: #eddab2;
    border: 1px solid #444;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

/* Products Page */
.products-page {
    background-color: #000;
    padding: 40px 0;
    min-height: 100vh;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #cf8109;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: #cf8109;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.product-name {
    color: #eddab2;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.product-description {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    color: #cf8109;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.add-to-cart {
    background-color: #462e12;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.add-to-cart:hover {
    background-color: #5a3a1a;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background-color: #462e12;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.load-more-btn:hover {
    background-color: #5a3a1a;
    transform: translateY(-3px);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: #111;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #222;
}

.modal-header h2 {
    color: #eddab2;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
}

.close-modal {
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    display: flex;
    padding: 20px;
}

.modal-image {
    flex: 1;
    margin-right: 20px;
}

.modal-image img {
    width: 100%;
    border-radius: 5px;
}

.modal-info {
    flex: 1;
}

.modal-info h3 {
    color: #eddab2;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.modal-info p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
}

.modal-price {
    color: #cf8109;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.modal-quantity {
    margin-bottom: 20px;
}

.modal-quantity label {
    display: block;
    margin-bottom: 10px;
    color: #eddab2;
    font-family: 'Roboto', sans-serif;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    background-color: #222;
    border: none;
    color: #eddab2;
    font-size: 16px;
    cursor: pointer;
}

.quantity-controls input {
    width: 50px;
    height: 30px;
    text-align: center;
    background-color: #222;
    border: none;
    color: #eddab2;
    margin: 0 10px;
}

.add-to-cart-modal-btn {
    background-color: #cf8109;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

.add-to-cart-modal-btn:hover {
    background-color: #e5a019;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #eddab2;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 225px;
    height: 130px;
    margin-bottom: 15px;
}


.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand h3 {
    color: #eddab2;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    color: #eddab2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #cf8109;
    color: #fff;
    transform: translateY(-3px);
}

.footer-explore h3,
.footer-news h3,
.footer-contact h3 {
    color: #eddab2;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-explore h3::after,
.footer-news h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #cf8109;
}

.footer-explore ul {
    list-style: none;
}

.footer-explore li {
    margin-bottom: 12px;
}

.footer-explore a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.footer-explore a:hover {
    color: #cf8109;
    padding-left: 5px;
}

.news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.news-item:last-child {
    border-bottom: none;
}

.news-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    flex: 1;
}

.news-date {
    color: #888;
    font-size: 12px;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.news-title {
    color: #eddab2;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #cf8109;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.contact-item i {
    color: #cf8109;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main {
        height: 500px;
    }
    
    .main .header .option {
        width: 60%;
    }
    
    .main .header .option #option-font a {
        font-size: 16px;
    }
    
    .main .text-main .main-line a {
        font-size: 50px;
    }
    
    .main .shop-learn {
        width: 80%;
    }
    
    .main .shop-learn .shop-now a, 
    .main .shop-learn .learn-more a {
        font-size: 20px;
    }
    
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .social-icons {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .main .header .logo {
        width: 25%;
    }
    
    .main .header .option {
        width: 70%;
        gap: 3%;
    }
    
    .main .header .option #option-font a {
        font-size: 14px;
    }
    
    .main .text-main {
        width: 80%;
    }
    
    .main .text-main .main-line a {
        font-size: 40px;
    }
    
    .main .shop-learn {
        width: 90%;
        flex-direction: column;
        height: 25%;
        gap: 10px;
    }
    
    .main .shop-learn .shop-now, 
    .main .shop-learn .learn-more {
        width: 100%;
        height: 50px;
    }
    
    .filter-tags {
        gap: 10px;
    }
    
    .filter-tag {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .results-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
}

/* Add these responsive improvements to your existing CSS */

/* Header improvements for smaller screens */
@media (max-width: 992px) {
    .main .header .option {
        width: 60%;
        gap: 3%;
    }
    
    .main .header .option #option-font {
        width: 18%;
    }
    
    .main .text-main {
        width: 60%;
    }
    
    .main .text-main .main-line a {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .main {
        height: 600px;
    }
    
    .main .header {
        height: 80px;
    }
    
    .main .header .logo {
        width: 20%;
        margin: 0 0 0 20px;
    }
    
    .main .header .option {
        width: 70%;
        gap: 2%;
    }
    
    .main .header .option #option-font {
        width: 20%;
    }
    
    .main .header .option #option-font a {
        font-size: 14px;
        padding: 3px 6px;
    }
    
    .main .text-main {
        width: 80%;
        left: 5%;
    }
    
    .main .text-main .main-line a {
        font-size: 50px;
    }
    
    .main .shop-learn {
        width: 80%;
        left: 5%;
    }
    
    .main .shop-learn .shop-now, 
    .main .shop-learn .learn-more {
        width: 40%;
        height: 50px;
    }
    
    .main .shop-learn .shop-now a, 
    .main .shop-learn .learn-more a {
        font-size: 18px;
    }
    
    .search-filter-section {
        padding: 20px 0;
    }
    
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .main {
        height: 500px;
    }
    
    .main .header {
        height: 70px;
    }
    
    .main .header .logo {
        width: 25%;
        margin: 0 0 0 15px;
    }
    
    .main .header .option {
        width: 70%;
        gap: 1%;
    }
    
    .main .header .option #option-font {
        width: 22%;
    }
    
    .main .header .option #option-font a {
        font-size: 12px;
        padding: 2px 4px;
    }
    
    .main .text-main {
        width: 90%;
        left: 5%;
        height: 40%;
    }
    
    .main .text-main .heading {
        top: 20%;
    }
    
    .main .text-main .heading a {
        font-size: 20px;
    }
    
    .main .text-main .main-line {
        top: 20%;
    }
    
    .main .text-main .main-line a {
        font-size: 40px;
        line-height: 1.2;
    }
    
    .main .shop-learn {
        width: 90%;
        left: 5%;
        flex-direction: column;
        height: 20%;
        gap: 15px;
    }
    
    .main .shop-learn .shop-now, 
    .main .shop-learn .learn-more {
        width: 100%;
        height: 45px;
    }
    
    .main .shop-learn .shop-now a, 
    .main .shop-learn .learn-more a {
        font-size: 16px;
    }
    
    .main .slider-indicators {
        bottom: 15px;
    }
    
    .main .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .search-bar {
        max-width: 100%;
    }
    
    .filter-tags {
        gap: 8px;
    }
    
    .filter-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .results-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 12px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .add-to-cart {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-image {
        margin-bottom: 15px;
    }
    
    .modal-info h3 {
        font-size: 18px;
    }
    
    .modal-price {
        font-size: 20px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-logo {
        width: 180px;
        height: 100px;
    }
    
    .footer-brand h3 {
        font-size: 24px;
    }
    
    .social-icons {
        margin-top: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-explore h3,
    .footer-news h3,
    .footer-contact h3 {
        font-size: 18px;
    }
    
    .footer-explore a {
        font-size: 14px;
    }
    
    .news-item {
        gap: 10px;
    }
    
    .news-image {
        width: 60px;
        height: 60px;
    }
    
    .news-title {
        font-size: 12px;
    }
    
    .contact-item {
        font-size: 12px;
    }
}

/* Extra small screens (mobile phones in portrait) */
@media (max-width: 400px) {
    .main .header .option #option-font a {
        font-size: 10px;
    }
    
    .main .text-main .main-line a {
        font-size: 30px;
    }
    
    .main .shop-learn .shop-now a, 
    .main .shop-learn .learn-more a {
        font-size: 14px;
    }
    
    .products-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .load-more-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Large screens and desktops */
@media (min-width: 1200px) {
    .main {
        height: 800px;
    }
    
    .main .text-main .main-line a {
        font-size: 80px;
    }
    
    .products-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra large screens */
@media (min-width: 1400px) {
    .main {
        height: 900px;
    }
    
    .main .text-main .main-line a {
        font-size: 90px;
    }
    
    .products-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .footer-container {
        max-width: 1400px;
    }
}