/* Top Seller Products Section Styles */
.top-seller-section {
    padding: 70px 0;
    background: #fff;
}

.top-seller-section .container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.section-header {
    flex: 1;
    min-width: 300px;
}

.section-header .sub-title {
    font-size: 14px;
    color: #626262;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header .section-title {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-header .section-description {
    font-size: 16px;
    color: #626262;
    margin: 0;
    line-height: 1.6;
}

.countdown-timer {
    display: flex;
    gap: 15px;
    background: #F36B63;
    padding: 20px 30px;
    border-radius: 8px;
    flex-shrink: 0;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.timer-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-seller-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f9f9f9;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #F36B63;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

/* Product Action Buttons */
.product-action-buttons {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-action-buttons {
    opacity: 1;
}

.product-wishlist-btn,
.product-add-to-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    color: #333;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-wishlist-btn:hover,
.product-add-to-cart-btn:hover {
    background: #F36B63;
    border-color: #F36B63;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(243, 107, 99, 0.3);
}

.product-wishlist-btn svg,
.product-add-to-cart-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.product-wishlist-btn.active {
    background: #F36B63;
    border-color: #F36B63;
    color: #fff;
}

.product-wishlist-btn.active svg {
    fill: #fff;
    stroke: #fff;
}

/* Features Section Styles */
.features-section {
    padding: 70px 0;
    background: #2c3e50;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.features-section .container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: capitalize;
}

.features-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid #F36B63;
    backdrop-filter: blur(10px);
}

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

.feature-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon-class {
    font-size: 36px;
    color: #F36B63;
}

.feature-icon-class i {
    color: #F36B63;
}

.feature-icon-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-icon-default {
    font-size: 36px;
    color: #F36B63;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: capitalize;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-header {
        margin-bottom: 40px;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-subtitle {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-class {
        font-size: 30px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Hero Section Styles */
.video-hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.75);
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 80px 20px;
}

.video-hero-content .container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

.video-play-button-wrapper {
    margin-bottom: 30px;
}

.video-play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.video-play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.video-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.video-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.video-title .discount-highlight {
    color: #F36B63;
    font-weight: 800;
}

.video-button-wrapper {
    margin-top: 30px;
}

.video-cta-button {
    display: inline-block;
    background: #F36B63;
    color: #fff;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 107, 99, 0.3);
}

.video-cta-button:hover {
    background: #e55a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 107, 99, 0.4);
    color: #fff;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    z-index: 10000;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

.video-modal-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-hero-section {
        min-height: 500px;
    }
    
    .video-hero-content {
        padding: 60px 20px;
    }
    
    .video-play-button {
        width: 80px;
        height: 80px;
    }
    
    .video-play-button svg {
        width: 30px;
        height: 30px;
    }
    
    .video-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .video-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .video-cta-button {
        padding: 15px 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-hero-section {
        min-height: 400px;
    }
    
    .video-hero-content {
        padding: 40px 15px;
    }
    
    .video-play-button {
        width: 70px;
        height: 70px;
    }
    
    .video-play-button svg {
        width: 25px;
        height: 25px;
    }
    
    .video-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .video-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .video-cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-section .container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    text-transform: capitalize;
}

.testimonials-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.testimonials-carousel.owl-carousel {
    position: relative;
}

.testimonials-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    margin: 0 15px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #F36B63;
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

.testimonial-quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.testimonial-card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.testimonial-card-footer {
    margin-top: auto;
}

.testimonial-customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-customer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-customer-image-placeholder {
    background: #F36B63;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.testimonial-customer-details {
    flex: 1;
}

.testimonial-rating {
    margin-bottom: 8px;
}

.testimonial-rating .star {
    font-size: 18px;
    color: #F36B63;
    margin-right: 2px;
}

.testimonial-rating .star-empty {
    color: #ddd;
}

.testimonial-customer-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Owl Carousel Navigation Arrows for Testimonials */
.testimonials-carousel-wrapper .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 10;
}

.testimonials-carousel-wrapper .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F36B63 !important;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(243, 107, 99, 0.3);
    pointer-events: all;
    margin: 0 !important;
}

.testimonials-carousel-wrapper .owl-nav button:hover {
    background: #e55a52 !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(243, 107, 99, 0.4);
}

.testimonials-carousel-wrapper .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonials-carousel-wrapper .owl-nav button.owl-prev {
    left: -60px;
}

.testimonials-carousel-wrapper .owl-nav button.owl-next {
    right: -60px;
}

.testimonials-carousel-wrapper .owl-nav button svg {
    width: 24px;
    height: 24px;
}

/* Owl Carousel Pagination Dots for Testimonials */
.testimonials-carousel-wrapper .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonials-carousel-wrapper .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    margin: 0 5px;
}

.testimonials-carousel-wrapper .owl-dots button.active {
    background: #F36B63 !important;
    width: 14px;
    height: 14px;
}

.testimonials-carousel-wrapper .owl-dots button:hover {
    background: #F36B63 !important;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
    
    .testimonials-carousel-wrapper .owl-nav button.owl-prev {
        left: -50px;
    }
    
    .testimonials-carousel-wrapper .owl-nav button.owl-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-subtitle {
        font-size: 14px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-card {
        min-height: auto;
        padding: 30px 20px;
    }
    
    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }
    
    .testimonial-card-title {
        font-size: 20px;
    }
    
    .testimonial-card-text {
        font-size: 14px;
    }
    
    .testimonials-carousel-wrapper .owl-nav button {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-carousel-wrapper .owl-nav button svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonials-carousel-wrapper .owl-nav button.owl-prev {
        left: -50px;
    }
    
    .testimonials-carousel-wrapper .owl-nav button.owl-next {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-wrapper {
        padding: 0 40px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-customer-image {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-rating .star {
        font-size: 16px;
    }
    
    .testimonials-carousel-wrapper .owl-nav button.owl-prev {
        left: -40px;
    }
    
    .testimonials-carousel-wrapper .owl-nav button.owl-next {
        right: -40px;
    }
}

.product-info {
    padding: 20px 15px;
    text-align: center;
}

.product-name {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.product-name a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #F36B63;
}

.product-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.regular-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #F36B63;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.view-all-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    background: #F36B63;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-all-btn:hover {
    background: #c10500;
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .top-seller-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .countdown-timer {
        width: 100%;
        justify-content: center;
    }
    
    .top-seller-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-header .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .top-seller-section {
        padding: 40px 0;
    }
    
    .top-seller-products-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .timer-item {
        min-width: 50px;
    }
    
    .timer-value {
        font-size: 20px;
    }
    
    .timer-label {
        font-size: 10px;
    }
}

/* Promotional Banner Section Styles */
.promotional-banner-section {
    position: relative;
    min-height: 500px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.promotional-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.promotional-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.promotional-banner-section .container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

.promotional-banner-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.promotional-banner-left-image,
.promotional-banner-right-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotional-banner-left-image img,
.promotional-banner-right-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.promotional-banner-left-image {
    justify-content: flex-start;
}

.promotional-banner-right-image {
    justify-content: flex-end;
}

.promotional-banner-center {
    text-align: center;
    color: #fff;
}

.promotional-banner-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promotional-banner-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.promotional-banner-title {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.promotional-banner-price {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-prefix {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #F36B63;
    line-height: 1;
}

.promotional-banner-button-wrapper {
    margin-top: 30px;
}

.promotional-banner-button {
    display: inline-block;
    background: #F36B63;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.promotional-banner-button:hover {
    background: #e05a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 107, 99, 0.4);
    color: #fff;
}

/* Responsive Design for Promotional Banner */
@media (max-width: 1200px) {
    .promotional-banner-grid {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 30px;
    }
    
    .promotional-banner-left-image img,
    .promotional-banner-right-image img {
        max-width: 80%;
    }
}

@media (max-width: 992px) {
    .promotional-banner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promotional-banner-left-image,
    .promotional-banner-right-image {
        order: 2;
        justify-content: center;
    }
    
    .promotional-banner-center {
        order: 1;
    }
    
    .promotional-banner-left-image img,
    .promotional-banner-right-image img {
        max-width: 60%;
    }
    
    .promotional-banner-section {
        min-height: auto;
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .promotional-banner-section {
        padding: 50px 0;
    }
    
    .promotional-banner-countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .promotional-banner-subtitle {
        font-size: 20px;
    }
    
    .promotional-banner-title {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .promotional-banner-button {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .promotional-banner-left-image img,
    .promotional-banner-right-image img {
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .promotional-banner-countdown {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        padding: 10px 12px;
        min-width: 60px;
        flex: 1 1 calc(50% - 4px);
    }
    
    .countdown-value {
        font-size: 24px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .promotional-banner-subtitle {
        font-size: 18px;
    }
    
    .promotional-banner-title {
        font-size: 16px;
    }
    
    .price-amount {
        font-size: 28px;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background: #fafafa;
}

.blog-section .container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.blog-section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.blog-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #F36B63;
}

.blog-post-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.blog-post-footer {
    margin-top: auto;
}

.blog-read-more {
    color: #F36B63;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #e05a52;
}

.blog-section-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.blog-explore-button {
    display: inline-block;
    background: #F36B63;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.blog-explore-button:hover {
    background: #e05a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 107, 99, 0.4);
    color: #fff;
}

/* Responsive Design for Blog Section */
@media (max-width: 992px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-section-header {
        margin-bottom: 40px;
    }
    
    .blog-section-title {
        font-size: 28px;
    }
    
    .blog-section-subtitle {
        font-size: 14px;
    }
    
    .blog-post-image {
        height: 220px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 18px;
    }
    
    .blog-post-excerpt {
        font-size: 14px;
    }
    
    .blog-explore-button {
        padding: 12px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog-section-title {
        font-size: 24px;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 18px;
    }
    
    .blog-post-title {
        font-size: 17px;
    }
    
    .blog-explore-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Footer Styles */
#site-footer {
    background: #34495e;
    color: #fff;
}

/* Newsletter Subscription Section */
.footer-newsletter-wrapper {
    background: #34495e;
    padding: 40px 15px;
}

.footer-newsletter-section {
    background: #24353d;
    padding: 40px 50px;
    border-radius: 12px;
    max-width: 1270px;
    margin: 0 auto;
}

.footer-newsletter-section .wrapper {
    max-width: 100%;
    padding: 0;
}

.footer-newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.newsletter-icon {
    width: 24px;
    height: 24px;
    color: #fff;
    flex-shrink: 0;
}

.newsletter-text {
    color: #fff;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.3;
}

.newsletter-subtitle {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.3;
}

.footer-newsletter-right {
    flex: 1;
    max-width: 600px;
}

.newsletter-form {
    display: flex;
    gap: 5px;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 10px !important;
    font-size: 15px;
    background: #fff;
    color: #333;
    outline: none;
    min-width: 250px;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    padding: 19px 35px;
    background: #F36B63;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.newsletter-button:hover {
    background: #e05a52;
}

/* Main Footer Content */
.footer-main-content {
    background: #34495e;
    padding: 60px 0;
}

.footer-main-content .wrapper {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 200px !important;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    height: auto;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #F36B63;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.logo-sub {
    font-size: 18px;
    color: #fff;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social-section {
    margin-top: 25px;
}

.social-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

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

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: #F36B63;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F36B63;
}

.footer-buy-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #F36B63;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.footer-buy-button:hover {
    background: #e05a52;
    color: #fff;
}

/* Copyright Bar */
.footer-copyright-bar {
    background: #1a252f;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright-bar .wrapper {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-newsletter-right {
        max-width: 100%;
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-main-content {
        padding: 40px 0;
    }
    
    .footer-newsletter-section {
        padding: 25px 0;
    }
    
    .newsletter-title {
        font-size: 16px;
    }
    
    .newsletter-subtitle {
        font-size: 13px;
    }
}

