
    .hero-section {
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .hero-banner {
        height: 500px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    }

    .hero-banner.custom-overlay::before {
        display: none;
    }

    .hero-content {
        max-width: 500px;
        padding: 2rem;
        background-color: rgba(255, 255, 255, 0.85);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        animation: slideIn 0.8s ease-out;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .hero-btn {
        padding: 0.75rem 2rem;
        background: linear-gradient(135deg, #a8c4a2, #8dab86);
        border: none;
        color: white;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(168, 196, 162, 0.25);
    }

    .hero-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(168, 196, 162, 0.3);
    }

    .carousel-indicators.custom-thumbnails {
        position: static;
        margin-top: 15px;
        margin-bottom: 20px;
        justify-content: center;
        gap: 10px;
    }

    .carousel-indicators.custom-thumbnails [data-bs-target] {
        width: 100px;
        height: 60px;
        border: 2px solid transparent;
        border-radius: 4px;
        background-color: transparent;
        opacity: 0.6;
        padding: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        text-indent: 0;
    }

    .carousel-indicators.custom-thumbnails [data-bs-target] img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-indicators.custom-thumbnails .active {
        opacity: 1;
        border-color: #a8c4a2;
        transform: scale(1.1);
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .category-section {
        padding: 4rem 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .section-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, #a8c4a2, #c2d6bd);
        margin: 1rem auto;
    }

    .section-title h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #333;
        position: relative;
        display: inline-block;
    }

    .section-title p {
        color: #666;
        font-size: 1.1rem;
    }

    .category-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 280px;
        display: flex;
        flex-direction: column;
    }

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

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

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

    .category-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
        color: #fff;
        transition: all 0.3s ease;
    }

    .category-card:hover .category-info {
        background: linear-gradient(to top, rgba(168, 196, 162, 0.9), rgba(168, 196, 162, 0));
    }

    .category-info h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .category-info span {
        font-size: 0.95rem;
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
    }

    .product-section {
        padding: 5rem 0;
        position: relative;
    }

    .product-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to bottom, #f8f9fa, transparent);
        z-index: -1;
    }

    .product-card {
        border-radius: 15px;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .product-img-wrap {
        position: relative;
        padding-top: 75%;
        overflow: hidden;
        background: #f5f5f5;
    }

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

    .product-card:hover .product-img-wrap img {
        transform: scale(1.08);
    }

    .product-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 0.5rem 1rem;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 50px;
        z-index: 1;
        color: #fff;
    }

    .badge-discount {
        background: linear-gradient(135deg, #ff3366, #ff5733);
    }

    .badge-new {
        background: linear-gradient(135deg, #0dcaf0, #a8c4a2);
    }

    .product-card-body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
    }

    .product-meta {
        color: #a8c4a2;
        font-weight: 500;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .product-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .product-title a {
        transition: color 0.2s ease;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-title a:hover {
        color: #a8c4a2 !important;
    }

    .product-price {
        margin-top: auto;
    }

    .product-price span {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
    }

    .product-original-price {
        font-size: 1rem !important;
        color: #999 !important;
        text-decoration: line-through;
        margin-left: 0.5rem;
    }

    .product-action {
        position: absolute;
        right: 20px;
        bottom: 20px;
    }

    .btn-cart {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #a8c4a2;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(168, 196, 162, 0.3);
    }

    .btn-cart:hover {
        background: #8dab86;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(168, 196, 162, 0.4);
    }

    .products-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .tab-controls {
        display: flex;
        gap: 1rem;
    }

    .product-tab {
        border: none;
        background: none;
        font-weight: 500;
        color: #666;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        transition: all 0.2s ease;
    }

    .product-tab.active {
        background-color: #a8c4a2;
        color: #fff;
        box-shadow: 0 4px 8px rgba(168, 196, 162, 0.2);
    }

    .product-tab:hover:not(.active) {
        color: #a8c4a2;
    }

    .info-strip {
        background-color: #fff;
        padding: 2rem 0;
        margin-bottom: 2rem;
        border-bottom: 1px solid #f0f0f0;
    }
    .info-strip-title {
        text-align: center;
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        color: #333;
    }
    .step-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    @media (min-width: 992px) {
        .step-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    .step-item {
        display: flex;
        align-items: center;
        background: #fdfdfd;
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid #eee;
        transition: transform 0.2s;
    }
    .step-item:hover {
        transform: translateY(-2px);
        border-color: #a8c4a2;
    }
    .step-icon {
        font-size: 1.8rem;
        color: #a8c4a2;
        margin-right: 1rem;
        line-height: 1;
    }
    .step-text {
        font-weight: 600;
        font-size: 0.95rem;
        color: #444;
    }

    .story-section {
        padding: 1.5rem 0;
        background-color: #fff;
    }
    .story-scroll-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 0 1.5rem 0;
        scrollbar-width: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .story-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }
    .story-item {
        display: inline-block;
        width: 90px;
        min-width: 90px;
        max-width: 90px;
        margin-right: 1.2rem;
        text-align: center;
        vertical-align: top;
        text-decoration: none;
        box-sizing: border-box;
    }
    .story-item:last-child {
        margin-right: 0;
    }
    .story-img-container {
        width: 80px;
        height: 80px;
        margin: 0 auto 0.5rem;
        border-radius: 50%;
        border: 2px solid #a8c4a2;
        padding: 3px;
        position: relative;
        transition: all 0.3s ease;
    }
    .story-item:hover .story-img-container {
        transform: scale(1.05);
        border-color: #d4af37;
        box-shadow: 0 5px 15px rgba(168, 196, 162, 0.3);
    }
    .story-img-container img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        max-width: 100%;
    }
    .story-title {
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
        white-space: normal;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    @media (max-width: 991.98px) {
        .story-section {
            padding: 0.45rem 0 0.9rem;
            border-bottom: 1px solid #f1f1f1;
        }
        .story-section .container {
            max-width: 100%;
            padding-left: 12px;
            padding-right: 12px;
        }
        .story-scroll-wrapper {
            display: flex;
            gap: 0.75rem;
            padding: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        .story-item {
            width: 84px;
            min-width: 84px;
            max-width: 84px;
            margin-right: 0;
            padding: 0;
            border: 0;
            border-radius: 0;
            background-color: transparent;
            flex: 0 0 84px;
            box-sizing: border-box;
        }
        .story-img-container {
            display: block;
            width: 72px;
            height: 72px;
            margin: 0 auto 0.35rem;
            border-radius: 50%;
            border: 2px solid #a8c4a2;
            padding: 3px;
        }
        .story-title {
            font-size: 0.78rem;
            font-weight: 600;
            white-space: normal;
            display: -webkit-box;
            color: #495057;
            line-height: 1.25;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
    }

    .promo-section {
        padding: 2rem 0;
    }
    .promo-scroll-wrapper {
        display: flex;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    @media (max-width: 991px) {
        .promo-scroll-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 1rem;
            scroll-snap-type: x mandatory;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        .promo-col {
            min-width: 85%;
            flex: 0 0 85%;
            max-width: 85%;
            scroll-snap-align: center;
            box-sizing: border-box;
        }
    }
    @media (min-width: 992px) {
        .promo-col {
            flex: 1;
        }
    }
    .promo-card {
        border-radius: 16px;
        height: 220px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
        text-decoration: none;
        display: block;
    }
    .promo-card:hover {
        transform: translateY(-5px);
    }
    .promo-content {
        position: relative;
        z-index: 2;
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 60%;
    }
    .promo-content h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .promo-content p {
        font-size: 1rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 1rem;
        font-weight: 500;
    }
    .promo-btn {
        display: inline-block;
        padding: 0.5rem 1.2rem;
        background: #fff;
        color: #333;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .promo-img {
        position: absolute;
        right: -10%;
        bottom: -10%;
        width: 70%;
        height: 90%;
        object-fit: contain;
        z-index: 1;
        transition: transform 0.4s ease;
    }
    .promo-card:hover .promo-img {
        transform: scale(1.1) rotate(-5deg);
    }

    .bg-gradient-1 { background: linear-gradient(135deg, #a8c4a2 0%, #8dab86 100%); }
    .bg-gradient-2 { background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); }
    .bg-gradient-3 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }

    .product-grid-compact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    @media (min-width: 768px) {
        .product-grid-compact {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }
    @media (min-width: 1200px) {
        .product-grid-compact {
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }
    }

    .product-card-compact {
        border-radius: 12px;
        border: 1px solid #f0f0f0;
        background: #fff;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .product-card-compact:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-color: transparent;
    }
    .product-card-compact .product-img-wrap {
        padding-top: 100%;
        border-radius: 12px 12px 0 0;
    }
    .product-card-compact .product-card-body {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .product-card-compact .product-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        height: 2.8em;
        overflow: hidden;
        line-height: 1.4;
    }
    .product-card-compact .product-price {
        margin-top: auto;
    }
    .product-card-compact .product-price span {
        font-size: 1.1rem;
    }
    .badge-special {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: rgba(168, 196, 162, 0.95);
        color: #fff;
        font-size: 0.7rem;
        padding: 0.3em 0.7em;
        border-radius: 4px;
        z-index: 2;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .hero-section-modern {
        margin-bottom: 0;
        border-radius: 0 0 20px 20px;
    }
    .hero-section-modern .hero-banner {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
    }
    @media (max-width: 768px) {
        .hero-section-modern .hero-banner {
            height: 50vh;
            min-height: 350px;
        }
        .hero-content h1 {
            font-size: 1.8rem;
        }
    }

    .features-section {
        padding: 5rem 0;
        background: linear-gradient(to right, rgba(168, 196, 162, 0.05), rgba(255, 255, 255, 0.8), rgba(168, 196, 162, 0.05));
    }

    .feature-card {
        background: #fff;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(135deg, rgba(168, 196, 162, 0.1), rgba(255, 255, 255, 0.9), rgba(168, 196, 162, 0.05));
        z-index: -1;
        transition: height 0.4s ease;
    }

    .feature-card:hover::before {
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: rgba(168, 196, 162, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
        color: #a8c4a2;
    }

    .feature-card:hover .feature-icon {
        background-color: #a8c4a2;
        color: #fff;
        box-shadow: 0 5px 15px rgba(168, 196, 162, 0.3);
        transform: scale(1.1);
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #333;
    }

    .feature-text {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }

    .newsletter-section {
        padding: 5rem 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('@Url.Content("~/images/slider/slider-1.png")');
        background-size: cover;
        background-position: center;
        position: relative;
        color: #fff;
    }

    .newsletter-content {
        max-width: 650px;
        margin: 0 auto;
        text-align: center;
    }

    .newsletter-content h3 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .newsletter-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .newsletter-form {
        display: flex;
        background-color: #fff;
        border-radius: 50px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        max-width: 500px;
        margin: 0 auto;
    }

    .newsletter-form input {
        flex-grow: 1;
        border: none;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        border-radius: 0;
    }

    .newsletter-form input:focus {
        box-shadow: none;
    }

    .newsletter-form button {
        background: linear-gradient(135deg, #a8c4a2, #8dab86);
        color: #fff;
        border: none;
        padding: 0 2rem;
        font-weight: 600;
        border-radius: 0 50px 50px 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
        background: linear-gradient(135deg, #8dab86, #738f6d);
    }

    .animate-pulse {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(168, 196, 162, 0.4);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(168, 196, 162, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(168, 196, 162, 0);
        }
    }

@media (min-width: 992px) {
    .story-section {
        padding: 0.6rem 0 0.7rem;
    }
    .story-scroll-wrapper {
        padding: 0.3rem 0 0.65rem 0;
    }
    .story-section > .container > .d-flex.justify-content-between.align-items-center {
        margin-bottom: 0.55rem !important;
    }
    .hero-section-modern {
        margin-bottom: 0;
    }
    .info-strip {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    .info-strip-title {
        margin-bottom: 0.85rem;
        font-size: 1.2rem;
    }
    .step-grid {
        gap: 0.75rem;
    }
    .step-item {
        padding: 0.72rem;
    }
    .step-icon {
        font-size: 1.55rem;
        margin-right: 0.75rem;
    }
    .step-text {
        font-size: 0.875rem;
    }
    .category-section {
        padding: 2rem 0;
    }
    .category-section .section-title {
        margin-bottom: 1.35rem;
    }
    .category-section .section-title h2 {
        font-size: 1.85rem;
    }
    .product-section {
        padding-top: 1.15rem;
        padding-bottom: 2.1rem;
    }
    .product-section .section-title {
        margin-bottom: 1rem;
    }
    .products-header {
        margin-bottom: 1.15rem !important;
    }
    .section-title {
        margin-bottom: 1.35rem;
    }
    .promo-section {
        padding: 1rem 0;
    }
    .promo-card {
        height: 188px;
    }
    .promo-content {
        padding: 1.35rem;
    }
    .promo-content h3 {
        font-size: 1.35rem;
    }
    .promo-content p {
        font-size: 0.92rem;
        margin-bottom: 0.65rem;
    }
}
