/* HOME PAGE STYLES */

:root {
    --sunset-orange: #ff5900;
    --accent-yellow: #fcf25e;
    --dark: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #999;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 89, 0, 0.03) 10px,
        rgba(255, 89, 0, 0.03) 20px
    );
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* CONTAINER */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* FEATURED PRODUCTS SECTION */
.featured-products {
    padding: 80px 0 40px;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    background: var(--gray-light);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #e0e0e0;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 50%;
    text-align: center;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    min-width: 90px;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.delivery-badge-days {
    font-size: 24px;
    margin-bottom: 2px;
}

.delivery-badge-text {
    font-size: 10px;
}

.product-info {
    padding: 30px;
    background: var(--white);
}

.product-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.4;
}

.shop-now-btn {
    display: inline-block;
    background: var(--sunset-orange);
    color: var(--white);
    padding: 14px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.shop-now-btn:hover {
    background: var(--sunset-orange-hover, #e04f00);
}

/* ADDITIONAL PRODUCTS SECTION */
.additional-products {
    padding: 40px 0;
    background: var(--gray-light);
}

.products-grid-alt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card-small {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-card-small .product-image-wrapper {
    padding-top: 100%;
}

.product-card-small .product-info {
    padding: 20px;
    text-align: center;
}

.product-card-small .product-category {
    font-size: 16px;
    margin-bottom: 5px;
}

.product-card-small .product-name {
    font-size: 13px;
    margin-bottom: 15px;
}

.product-card-small .shop-now-btn {
    padding: 10px 30px;
    font-size: 12px;
}

/* PROMO BANNER */
.promo-banner {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-orange-hover, #ff7a33) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 1;
}

.promo-details {
    margin-bottom: 40px;
}

.promo-badge {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.promo-text {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.promo-subtext {
    font-size: 16px;
    opacity: 0.9;
}

.shop-banners-btn {
    display: inline-block;
    background: var(--white);
    color: var(--sunset-orange);
    padding: 18px 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.shop-banners-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: scale(1.05);
}

/* SPECIALTY PRODUCTS */
.specialty-products {
    padding: 80px 0;
    background: var(--white);
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    margin-bottom: 20px;
}

.section-note {
    text-align: center;
    font-size: 16px;
    margin-bottom: 60px;
    color: var(--gray-medium);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.specialty-card {
    background: var(--dark);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.3s ease;
    min-height: 450px;
}

.specialty-card:hover {
    background: #2a2a2a;
}

.specialty-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.specialty-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.specialty-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-decoration: underline;
    text-decoration-color: var(--sunset-orange);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.specialty-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.specialty-card .shop-now-btn {
    background: var(--sunset-orange);
    padding: 12px 35px;
}

.specialty-card .shop-now-btn:hover {
    background: var(--accent-yellow);
    color: var(--dark);
}

/* CATEGORIES SHOWCASE */
.categories-showcase {
    padding: 60px 0;
    background: var(--gray-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    display: block;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--white);
    margin-bottom: 15px;
    overflow: hidden;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image {
    transform: scale(1.05);
}

.category-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 12px;
    display: inline-block;
}

/* INFO ARTICLES */
.info-articles {
    padding: 80px 0;
    background: var(--white);
}

.info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-image {
    width: 100%;
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.info-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.info-content .shop-btn {
    display: inline-block;
    background: var(--sunset-orange);
    color: var(--white);
    padding: 14px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: background 0.3s ease;
}

.info-content .shop-btn:hover {
    background: var(--sunset-orange-hover, #e04f00);
}

.info-details {
    background: var(--gray-light);
    padding: 25px;
    margin-top: 20px;
}

.info-details p {
    margin-bottom: 15px;
    font-size: 15px;
}

.info-details p:last-child {
    margin-bottom: 0;
}

.info-details strong {
    font-weight: 700;
}

/* DELIVERY PROMISE */
.delivery-promise {
    padding: 80px 0;
    background: var(--gray-light);
}

.promise-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.promise-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: var(--gray-medium);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.promise-item {
    text-align: center;
}

.promise-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.promise-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--dark);
}

.promise-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* CONTACT INFO */
.contact-info {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.contact-details {
    max-width: 700px;
    margin: 0 auto;
}

.phone-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--sunset-orange);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--accent-yellow);
}

.contact-address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-hours {
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-online {
    font-size: 16px;
    opacity: 0.9;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .products-grid-alt {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .products-grid-alt {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .promo-title {
        font-size: 48px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid-alt,
    .specialty-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-badge {
        min-width: 70px;
        min-height: 70px;
        font-size: 9px;
    }
    
    .delivery-badge-days {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .section-subheading {
        font-size: 28px;
    }
    
    .promise-title {
        font-size: 28px;
    }
    
    .phone-number {
        font-size: 32px;
    }
}