﻿/* ========== Moved from index.blade.php ========== */
    /* Popular Products Section */
    .popular-products {
        background: #fff;
        padding: 60px 0;
    }

    .popular-products .section-title {
        margin-bottom: 40px;
    }

    .popular-products .section-title h2 {
        font-size: 32px;
        color: #111;
        margin-bottom: 10px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .popular-products .section-title p {
        color: #999;
        font-size: 14px;
        margin: 0;
    }

    /* Product Tabs */
    .product-tabs {
        display: flex;
        gap: 20px;
        margin-bottom: 0;
        border-bottom: 2px solid #f0f0f0;
        flex-wrap: wrap;
    }

    .product-controls-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .product-controls-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .product-tab {
        padding: 15px 20px;
        background: transparent;
        border: none;
        font-size: 15px;
        color: #000000;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        text-transform: uppercase;
    }

    .product-tab:hover {
        color: #aa0526;
    }

    .product-tab.active {
        color:#aa0526;
        border-bottom-color: #aa0526;
    }

    /* Product Carousel */
    .product-carousel-wrapper {
        position: relative;
        overflow: hidden;
    }

    .product-carousel-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 30px;
        padding: 20px 0;
        overflow-x: auto;
        scroll-behavior: smooth;
        overflow-y: hidden;
        margin: 0 -40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .product-carousel-container::-webkit-scrollbar {
        display: none;
    }

    .product-carousel-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .product-item {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        flex: 0 0 calc(25% - 23px);
        min-width: calc(25% - 23px);
    }

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

    .product-image {
        position: relative;
        width: 100%;
        height: 280px;
        overflow: hidden;
        background: #f9f9f9;
    }

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

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

    .product-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #aa0526;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding-bottom: 20px;
    }

    .product-item:hover .product-overlay {
        opacity: 1;
    }

    .overlay-actions {
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .overlay-btn {
        background: white;
        color: #aa0526;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .overlay-btn:hover {
        background: #aa0526;
        color: white;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h5 {
        font-size: 16px;
        color: #111;
        margin: 0 0 10px 0;
        font-weight: 600;
    }

    .product-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 10px;
    }

    .product-rating .stars {
        color: #FFD700;
        font-size: 12px;
    }

    .product-rating span {
        color: #999;
        font-size: 12px;
    }

    .product-price {
        font-size: 18px;
        color: #D4B896;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .product-footer {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .quantity-adjuster {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 4px;
        overflow: hidden;
    }

    .qty-btn {
        background: #f5f5f5;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s ease;
    }

    .qty-btn:hover {
        background: #aa0526;
        color: white;
    }

    .qty-input {
        width: 40px;
        text-align: center;
        border: none;
        padding: 5px;
        font-size: 14px;
    }

    .add-to-cart-btn {
        flex: 1;
        background: #aa0526;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .add-to-cart-btn:hover {
        background: #c4a886;
    }

    /* Carousel Controls */
    .carousel-control {
        background: #aa0526;
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .carousel-control:hover {
        background: #aa0526;
        transform: scale(1.1);
    }

    .carousel-prev, .carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-control:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Quick View Modal */
    .quick-view-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        animation: fadeIn 0.3s ease;
    }

    .quick-view-modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes slideIn {
        from {
            transform: scale(0.8);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .quick-view-modal-content {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        max-width: 900px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        animation: slideIn 0.3s ease;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    }

    .quick-view-close {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 28px;
        font-weight: bold;
        color: #999;
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .quick-view-close:hover {
        color: #111;
    }

    .quick-view-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .quick-view-image {
        width: 100%;
        height: 400px;
        overflow: hidden;
        border-radius: 8px;
        background: #f9f9f9;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quick-view-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .quick-view-details {
        padding: 20px 0;
    }

    .quick-view-details h2 {
        font-size: 24px;
        color: #111;
        margin: 0 0 15px 0;
        font-weight: 700;
    }

    .quick-view-rating {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .quick-view-rating .stars {
        color: #FFD700;
        font-size: 14px;
    }

    .quick-view-rating span {
        color: #999;
        font-size: 14px;
    }

    .quick-view-price {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .quick-view-price span {
        display: block;
        font-size: 24px;
        color: #D4B896;
        font-weight: 700;
    }

    .original-price {
        font-size: 16px !important;
        color: #999 !important;
        text-decoration: line-through !important;
        margin-top: 5px !important;
    }

    .quick-view-description {
        margin-bottom: 20px;
    }

    .quick-view-description h5 {
        font-size: 16px;
        color: #111;
        margin: 0 0 10px 0;
        font-weight: 600;
    }

    .quick-view-description p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .quick-view-info {
        margin-bottom: 20px;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 6px;
    }

    .info-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    .info-row:last-child {
        border-bottom: none;
    }

    .info-label {
        color: #666;
        font-weight: 600;
        font-size: 14px;
    }

    .info-value {
        color: #111;
        font-size: 14px;
    }

    .quick-view-actions {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .quantity-adjuster-qv {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 4px;
        overflow: hidden;
    }

    .quantity-adjuster-qv .qty-btn {
        background: #f5f5f5;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s ease;
    }

    .quantity-adjuster-qv .qty-btn:hover {
        background: #D4B896;
        color: white;
    }

    .quantity-adjuster-qv .qty-input {
        width: 50px;
        text-align: center;
        border: none;
        padding: 10px;
        font-size: 14px;
        font-weight: 600;
    }

    .add-to-cart-btn-qv {
        flex: 1;
        background: #D4B896;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .add-to-cart-btn-qv:hover {
        background: #c4a886;
    }

    @media (max-width: 768px) {
        .quick-view-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .quick-view-modal-content {
            padding: 20px;
            width: 95%;
        }

        .quick-view-image {
            height: 300px;
        }

        .quick-view-details h2 {
            font-size: 20px;
        }

        .quick-view-actions {
            flex-direction: column;
        }

        .quantity-adjuster-qv {
            width: 100%;
        }

        .add-to-cart-btn-qv {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .product-carousel-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 20px;
        }

        .product-controls-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .product-controls-right {
            width: 100%;
            justify-content: space-between;
        }

        .product-tabs {
            flex-wrap: wrap;
            gap: 10px;
        }

        .popular-products {
            padding: 40px 0;
        }

        

        .product-tab {
            padding: 12px 15px;
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .product-carousel-container {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 15px;
        }

        .product-image {
            height: 250px;
        }

        .carousel-control {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .popular-products .section-title h2 {
            font-size: 20px;
        }

        .product-tab {
            padding: 10px 12px;
            font-size: 12px;
        }
    }

    /* Shop By Category Tab Section */
    .insp-category-tab-section {
        background: #f5f5f5;
        padding: 60px 0;
    }

    .insp-category-tab-section .insp-section-title {
        margin-bottom: 40px;
    }

    .insp-category-tab-section .insp-section-title h2 {
        font-size: 16px;
        color: #111;
        margin-bottom: 25px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: left;
        position: relative;
    }

    .insp-category-tab-section .insp-section-title h2::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -15px;
        width: 80px;
        height: 4px;
        background: #aa0526;
    }

    .insp-controls-header {
        display: flex;
        align-items: right;
        justify-content: space-between;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .insp-category-tabs {
        display: flex;
        gap: 20px;
        margin-bottom: 0;
        border-bottom: 2px solid #f0f0f0;
        flex-wrap: wrap;
    }

    .insp-category-tab-btn {
        padding: 15px 20px;
        background: transparent;
        border: none;
        font-size: 15px;
        color: #000000;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        text-transform: uppercase;
    }

    .insp-category-tab-btn:hover {
        color: #aa0526;
    }

    .insp-category-tab-btn.active {
        color: #aa0526;
        border-bottom-color: #aa0526;
    }

    .insp-carousel-wrapper {
        position: relative;
    }

    .insp-carousel-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 20px 40px;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .insp-carousel-container::-webkit-scrollbar {
        display: none;
    }

    .insp-product-item {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

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

    .insp-product-image {
        position: relative;
        width: 100%;
        height: 280px;
        overflow: hidden;
        background: #f9f9f9;
    }

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

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

    .insp-product-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #aa0526;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .insp-product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding-bottom: 20px;
    }

    .insp-product-item:hover .insp-product-overlay {
        opacity: 1;
    }

    .insp-overlay-actions {
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .insp-overlay-btn {
        background: white;
        color: #aa0526;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .insp-overlay-btn:hover {
        background: #aa0526;
        color: white;
    }

    .insp-product-info {
        padding: 20px;
    }

    .insp-product-info h5 {
        font-size: 16px;
        color: #111;
        margin: 0 0 10px 0;
        font-weight: 600;
    }

    .insp-product-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 10px;
    }

    .insp-product-rating .insp-stars {
        color: #FFD700;
        font-size: 12px;
    }

    .insp-product-rating span {
        color: #999;
        font-size: 12px;
    }

    .insp-product-price {
        font-size: 18px;
        color: #D4B896;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .insp-product-footer {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .insp-qty-adjuster {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 4px;
        overflow: hidden;
    }

    .insp-qty-btn {
        background: #f5f5f5;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 14px;
        transition: background 0.3s ease;
    }

    .insp-qty-btn:hover {
        background: #aa0526;
        color: white;
    }

    .insp-qty-input {
        width: 40px;
        text-align: center;
        border: none;
        padding: 5px;
        font-size: 14px;
    }

    .insp-add-to-cart-btn {
        flex: 1;
        background: #aa0526;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .insp-add-to-cart-btn:hover {
        background: #c4a886;
    }

    .insp-carousel-btn {
        background: #aa0526;
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .insp-carousel-btn:hover {
        background: #aa0526;
        transform: scale(1.1);
    }

    .insp-tab-panel {
        display: none;
    }

    .insp-tab-panel.active {
        display: block;
    }

    @media (max-width: 768px) {
        .insp-carousel-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 20px;
        }

        .insp-controls-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .insp-category-tabs {
            flex-wrap: wrap;
            gap: 10px;
        }

        .insp-category-tab-section {
            padding: 40px 0;
        }

        .insp-category-tab-btn {
            padding: 12px 15px;
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .insp-carousel-container {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 15px;
        }

        .insp-product-image {
            height: 250px;
        }

        .insp-category-tab-btn {
            padding: 10px 12px;
            font-size: 12px;
        }
    }

    .categories-carousel {
        background: #f5f5f5;
        padding: 50px 0;
    }

    .categories-carousel .section-title {
        margin-bottom: 40px;
    }

    .categories-carousel .section-title h2 {
        font-size: 32px;
        color: #111;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .categories-carousel .section-title p {
        color: #999;
        font-size: 14px;
        margin: 0;
    }

    .categories-carousel-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .category-item {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        cursor: pointer;
    }

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

    .category-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
        background: #f9f9f9;
    }

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

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

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

    .category-info h5 {
        font-size: 18px;
        color: #111;
        margin: 0;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .categories-carousel-wrapper {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }

        .category-image {
            height: 180px;
        }

        .categories-carousel {
            padding: 30px 0;
        }

        .categories-carousel .section-title h2 {
            font-size: 24px;
        }
    }

    @media (max-width: 576px) {
        .categories-carousel-wrapper {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .category-image {
            height: 150px;
        }

        .category-info {
            padding: 15px;
        }

        .category-info h5 {
            font-size: 16px;
        }
    }

    .sales-banner-section .sales-banner-card {
        position: relative;
        min-height: 320px;
        
        overflow: hidden;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    }

    .sales-banner-section .sales-banner-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.68) 100%);
    }

    .sales-banner-section .sales-banner-content {
        position: relative;
        z-index: 1;
        padding: 30px;
        color: white;
    }

    .sales-banner-section .sales-banner-content h3 {
        font-size: 28px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .ad-banner-section {
        padding: 0 0 60px;
    }

    .ad-banner-section .ad-banner-card {
        position: relative;
        min-height: 400px;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        background-size: cover;
        background-position: center;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
    }

    .ad-banner-section .ad-banner-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.65) 100%);
    }

    .ad-banner-section .ad-banner-content {
        position: relative;
        z-index: 1;
        padding: 24px;
        color: #fff;
        width: 100%;
    }

    .ad-banner-section .ad-banner-content h3 {
        margin: 0;
        font-size: 24px;
        font-weight: 700;
        color: #fff;
    }

    .ad-banner-section .ad-banner-link {
        display: inline-block;
        margin-top: 14px;
        padding: 10px 20px;
        border-radius: 50px;
        background: #aa0526;
        color: #fff;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 700;
        transition: background 0.3s ease;
    }

    .ad-banner-section .ad-banner-link:hover {
        background: #8b041f;
        color: #fff;
    }

    .sales-banner-section .sales-banner-content .banner-subtitle {
        display: inline-block;
        margin-bottom: 12px;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px;
        color: white;
    }

    .sales-banner-section .sales-banner-content .banner-discount,
    .sales-banner-section .sales-banner-content .banner-coupon {
        font-size: 16px;
        margin-bottom: 14px;
        color: #fff;
    }

    .sales-banner-section .sales-banner-content .banner-btn {
        display: inline-block;
        padding: 12px 26px;
        border-radius: 50px;
        background: #aa0526;
        color: white;
        text-transform: uppercase;
        font-weight: 700;
        transition: background 0.3s ease;
    }

    .sales-banner-section .sales-banner-content .banner-btn:hover {
        background: #8b041f;
    }

    .sales-products {
        background: #fff;
        padding: 60px 0;
    }

    .sales-products .section-title h2 {
        font-size: 32px;
        color: #111;
        margin-bottom: 10px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .benefits-strip {
       background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
        
        border-bottom: 1px solid #ececec;
       
        padding: 30px 0;
        margin: 20px 0 0;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.04);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .benefit-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }

    .benefit-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 50%;
        background: linear-gradient(135deg, #aa0526, #c43b57);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .benefit-content h4 {
        margin: 0 0 4px;
        font-size: 16px;
        font-weight: 700;
        color: #111;
    }

    .benefit-content p {
        margin: 0;
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .benefit-item {
            padding: 16px;
        }
    }

    /* Hero Section with Image Grid */
    .hero-grid-section {
        padding: 50px 0;
        background: #f9f9f9;
    }

    .hero-grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        align-items: stretch;
        min-height: 500px;
    }

    .hero-grid-left {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .hero-grid-left img {
        width: 100%;
        height: 530px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .hero-grid-left:hover img {
        transform: scale(1.05);
    }

    .hero-grid-right {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 25px;
    }

    .hero-grid-image {
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
    }

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

    .hero-grid-image:hover img {
        transform: scale(1.05);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-grid-container {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .hero-grid-right {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto;
        }

        .hero-grid-left {
            min-height: 300px;
        }
    }

    @media (max-width: 768px) {
        .hero-grid-section {
            padding: 30px 0;
        }

        .hero-grid-container {
            gap: 15px;
        }

        .hero-grid-right {
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .hero-grid-left,
        .hero-grid-image {
            min-height: 200px;
            border-radius: 4px;
        }
    }

