/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top blue banner */
.top-banner {
    background-color: #1145b5;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

/* Main header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.logo {
    height: 40px;
    width: auto;
}

.store-link {
    font-size: 12px;
    color: #0066cc;
    font-weight: 500;
}

.search-section {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
    position: relative;
}

.search-input {
    flex: 1;
    border: 2px solid #1145b5;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-input:focus {
    border-color: #0d338a;
    box-shadow: 0 0 0 0.2rem rgba(17, 69, 181, 0.25);
}

.search-btn {
    background-color: #1145b5;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #0d338a;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    min-width: 40px;
    transition: transform 0.2s;
}

.action-item:hover {
    transform: scale(1.05);
}

.action-item i {
    font-size: 22px;
    margin-bottom: 3px;
    color: #1145b5;
}

.sub-header {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    font-size: 13px;
    padding-top: 5px;
    border-top: 1px solid #eee;
}

.sub-header a {
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 3px;
    transition: color 0.3s;
}

.sub-header a:hover {
    color: #1145b5;
}

/* Category navigation */
.category-nav-section {
    padding: 20px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}

.category-box {
    background: white;
    border: 2px solid #1145b5;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.category-box:hover {
    background-color: #e3f2fd;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cat-icon {
    font-size: 32px;
    color: #1145b5;
}

.category-box span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.sale-badge .badge-sale {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #0066cc;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.shop-all {
    background-color: #1145b5;
    color: white;
    font-weight: bold;
    justify-content: center;
}

/* Hero section */
.hero-section {
    padding: 20px 0;
    background-color: #f5f5f5;
}

.hero-card {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: scale(1.02);
}

.hero-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 1;
    color: #333;
    width: 100%;
}

.hero-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.online-deals {
    text-align: center;
    color: white;
}

.deals-badge {
    background-color: white;
    color: #5d4037;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 14px;
}

.online-deals h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.online-deals p {
    font-size: 16px;
    margin-bottom: 15px;
}

.shop-link {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
    font-size: 14px;
}

/* Blue banner */
.blue-banner {
    background-color: #1976d2;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blue-banner:hover {
    background-color: #1565c0;
}

/* Materials section */
.materials-section {
    padding: 30px 0;
    background-color: #fafafa;
}

.materials-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.material-item {
    position: relative;
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.material-item:hover {
    transform: scale(1.03);
}

.material-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

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

.material-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-nav button {
    background: #1145b5;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.carousel-nav button:hover {
    background-color: #0d338a;
}

.section-header {
    border-bottom: 2px solid #1145b5;
    padding-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .header-actions {
        display: none;
    }
    
    .materials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .search-section {
        order: 3;
        margin: 10px 0 0;
        max-width: 100%;
    }
    
    .logo-section {
        min-width: auto;
    }
    
    .hero-card {
        height: 200px;
    }
    
    .online-deals h2 {
        font-size: 22px;
    }
    
    .sub-header {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .sub-header a {
        padding: 3px 6px;
        font-size: 12px;
    }
    

}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .materials-carousel {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .action-item {
        font-size: 10px;
    }
    
    .action-item i {
        font-size: 18px;
    }
    

}

/* MasterForce Banner */
.masterforce-banner {
    background-color: #0d338a;
    padding: 30px 0;
    margin: 30px 0;
    border-radius: 8px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banner-left,
.banner-right {
    flex: 1;
}

.banner-center {
    flex: 1.5;
    text-align: center;
}

.story-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    transform: rotate(-2deg);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.story-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0d338a;
}

.story-box p {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}

.masterforce-logo {
    font-size: 48px;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sales-title {
    font-size: 56px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-style: italic;
}

.rebate-box {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transform: rotate(2deg);
    border: 3px solid #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.rebate-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.rebate-amount {
    font-size: 48px;
    font-weight: bold;
    color: #1145b5;
    margin: 10px 0;
}

.rebate-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #d32f2f;
}

.rebate-details {
    font-size: 11px;
    line-height: 1.3;
}



/* Category Cards Section */
.category-cards-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.category-card-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
}

.category-card-item:hover {
    transform: translateY(-5px);
}

.category-card-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.category-card-item:hover img {
    transform: scale(1.05);
}

.category-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(200, 230, 201, 0.95);
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.shop-now-link {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-decoration: underline;
    display: inline-block;
    transition: color 0.3s;
}

.shop-now-link:hover {
    color: #0d338a;
}

/* Featured Products Grid Section */
.featured-grid-section {
    padding: 20px;
    background-color: #1145b5;
}

.featured-grid-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border: 10px solid #1145b5;
    background: white;
}

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

.featured-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.large-card {
    height: 520px;
}

.small-card {
    height: 260px;
}

.featured-grid-text {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #000;
    z-index: 1;
}

.small-card:first-child .featured-grid-text {
    left: 10px;
    top: auto;
    bottom: 60px;
    transform: none;
    text-align: left;
    color: #000;
}

.small-card:last-child .featured-grid-text {
    top: auto;
    bottom: 60px;
    left: auto;
    right: 60px;
    text-align: right;
    color: white;
}

.small-card:last-child .featured-grid-text.small-appliances {
    top: auto;
    bottom: 10px;
    left: 20px;
    right: auto;
    text-align: right;
    color: black;
}

.featured-grid-text h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.1;
}

.featured-grid-text .shop-now-link {
    font-size: 20px;
    font-weight: bold;
    color: inherit;
    text-decoration: underline;
    display: inline-block;
    transition: opacity 0.3s;
}

.featured-grid-text .shop-now-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .large-card {
        height: 300px;
    }
    
    .small-card {
        height: 200px;
    }
    
    .featured-grid-text {
        top: 20px;
        left: 20px;
    }
    
    .small-card:last-child .featured-grid-text {
        bottom: 20px;
        right: 20px;
    }
    
    .featured-grid-text h3 {
        font-size: 28px;
    }
    
    .featured-grid-text .shop-now-link {
        font-size: 14px;
    }
}



/* Dakota Brand Section */
.dakota-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.dakota-header {
    text-align: center;
    margin-bottom: 40px;
}

.dakota-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.dakota-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 400;
}

.dakota-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.dakota-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dakota-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.dakota-footer {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-top: 40px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .dakota-logo {
        max-width: 250px;
    }
    
    .dakota-description {
        font-size: 16px;
    }
    
    .dakota-card img {
        height: 250px;
    }
    
    .dakota-footer {
        font-size: 18px;
    }
}

/* Recommended Products Section */
.recommended-section {
    padding: 50px 0;
    background-color: #fff;
}

.recommended-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.recommended-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.recommended-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    transition: box-shadow 0.3s;
}

.recommended-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.recommended-item .product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.recommended-item .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.recommended-item h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 60px;
    color: #000;
}

.price-tag {
    font-size: 14px;
    margin-bottom: 15px;
    color: #000;
}

.price-large {
    font-size: 32px;
    font-weight: bold;
}

.price-small {
    font-size: 18px;
}

.btn-add-cart {
    width: 100%;
    background-color: #1145b5;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-add-cart:hover {
    background-color: #0d338a;
}

.btn-sold-out {
    width: 100%;
    background-color: #ccc;
    color: #666;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: not-allowed;
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #1145b5;
    cursor: pointer;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.prev-arrow, .next-arrow {
    background: #1145b5;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.page-indicator {
    font-size: 16px;
    color: #333;
}

/* Game Day Section */
.gameday-section {
    padding: 50px 0;
    background-color: #c8e6c9;
}

.gameday-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.gameday-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gameday-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 30px;
    border-radius: 4px;
}

.gameday-text h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gameday-product {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    height: 100%;
}

.gameday-product img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.gameday-product h5 {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 10px;
    min-height: 40px;
    color: #000;
}

.product-pricing {
    margin-bottom: 15px;
    font-size: 12px;
}

.old-price {
    text-decoration: line-through;
    color: #666;
}

.sale-price, .final-price {
    font-weight: bold;
    color: #d32f2f;
}

.big-price {
    font-size: 24px;
    font-weight: bold;
}

.small-price {
    font-size: 14px;
}

.rebate-info {
    color: #d32f2f;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .recommended-carousel {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .recommended-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gameday-text h3 {
        font-size: 18px;
    }
}

/* Featured Sale Items Section */
.featured-sale-section {
    padding: 50px 0;
    background-color: #fffacd;
}

.sale-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #1145b5;
    background: white;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #1145b5;
    color: white;
}

.tab-btn:hover {
    background: #1145b5;
    color: white;
}

.sale-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.sale-product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    position: relative;
}

.sale-product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.sale-product-card h5 {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 10px;
    min-height: 50px;
    color: #008000;
    font-weight: 600;
}

.sale-pricing {
    margin-bottom: 15px;
    font-size: 11px;
}

.price-val {
    font-weight: 600;
}

.rebate-red {
    color: #d32f2f;
    font-weight: 600;
}

.rebate-val {
    color: #d32f2f;
}

.final-price-large {
    font-weight: 700;
    color: #000;
}

.huge-price {
    font-size: 48px;
    font-weight: bold;
}

.cent-price {
    font-size: 24px;
}

.huge-price-display {
    font-size: 16px;
}

.mega-price {
    font-size: 56px;
    font-weight: bold;
}

/* Credit Card Promo Section */
.credit-promo-section {
    background-color: #f5f5f5;
}

.promo-left {
    background-image: url("../images/CapitalOneBanner-Mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
}

.promo-left h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-left p {
    font-size: 18px;
    margin-bottom: 30px;
}

.promo-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.option-item {
    text-align: center;
}

.percent-text {
    font-size: 72px;
    font-weight: bold;
    color: #ffd700;
    line-height: 1;
}

.rebate-text {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
}

.everyday-text {
    font-size: 20px;
    font-weight: 600;
}

.or-text {
    font-size: 24px;
    font-weight: 600;
}

.special-text, .financing-text, .offers-text {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    line-height: 1.2;
}

.learn-more-link {
    display: inline-block;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 4px;
}

.promo-right {
    background: white;
    padding: 60px 40px;
}

.promo-content {
    max-width: 600px;
}

.promo-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0d5c2f;
}

.apr-text {
    font-size: 48px;
    font-weight: bold;
    color: #ff8c00;
    line-height: 1;
}

.equal-pay-text {
    font-size: 36px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 20px;
}

.promo-details {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
}

.promo-note {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.disclaimer {
    font-size: 11px;
    color: #666;
}

@media (max-width: 1200px) {
    .sale-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sale-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-left {
        background-size: contain;
    }
}

/* Footer Categories Section */
.footer-categories-section {
    padding: 60px 0;
    background-color: #fff;
}

.footer-categories-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cat-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.footer-cat-item:hover {
    transform: translateY(-5px);
}

.footer-cat-icon {
    font-size: 80px;
    color: #2e7d32;
    margin-bottom: 15px;
    display: block;
}

.footer-cat-name {
    font-size: 16px;
    font-weight: 600;
    color: #2e7d32;
    line-height: 1.3;
}

/* Footer Promo Cards Section */
.footer-promo-section {
    background-color: #f5f5f5;
}

.footer-promo-card {
    padding: 80px 40px;
    text-align: center;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.green-card {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.red-card {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
}

.yellow-card {
    background: linear-gradient(135deg, #fbc02d 0%, #f9a825 100%);
    color: #000;
}

.promo-icon-box {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.promo-icon-box i {
    font-size: 100px;
    color: #2e7d32;
}

.footer-promo-card h3 {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.rays-list-box {
    background: white;
    border: 4px solid white;
    padding: 20px 60px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.rays-list-title {
    font-size: 56px;
    font-weight: bold;
    color: #c62828;
    font-family: 'Georgia', serif;
}

.red-card p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.qr-code-box {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000),
                linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    border: 3px solid #000;
}

.yellow-card h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.yellow-card p {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-cat-icon {
        font-size: 50px;
    }
    
    .footer-cat-name {
        font-size: 14px;
    }
    
    .footer-promo-card {
        padding: 60px 30px;
        min-height: 350px;
    }
    
    .footer-promo-card h3 {
        font-size: 28px;
    }
    
    .rays-list-title {
        font-size: 40px;
    }
}

/* Footer Links Section */
.footer-links-section {
    background-color: #e8e8e8;
    padding: 40px 0 20px;
}

.popular-links {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.popular-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.links-row {
    font-size: 14px;
    color: #000;
}

.links-row a {
    color: #000;
    text-decoration: none;
    padding: 0 5px;
}

.links-row a:hover {
    text-decoration: underline;
    color: #1145b5;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
}

.action-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
}

.action-box:hover {
    color: #1145b5;
}

.action-box i {
    font-size: 32px;
    color: #000;
}

.action-box:hover i {
    color: #1145b5;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #333;
    font-size: 13px;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
    color: #1145b5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

.social-links a {
    color: #000;
    font-size: 32px;
}

.social-links a:hover {
    color: #1145b5;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom-links a {
    color: #333;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
    color: #1145b5;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    font-size: 12px;
    flex-wrap: wrap;
}

.footer-legal a,
.footer-legal span {
    color: #333;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
    color: #1145b5;
}

.footer-disclaimer {
    padding: 20px 40px;
    font-size: 11px;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

.footer-logo {
    text-align: center;
    padding: 20px 0;
}

.footer-logo img {
    height: 40px;
}
