/* CSS Variables - Red, Black, White Theme */
:root {
    --primary-red: #dc2626;
    --dark-red: #b91c1c;
    --light-red: #f87171;
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --light-black: #374151;
    --pure-white: #ffffff;
    --light-gray: #f8f9fa;
    --border-gray: #e5e7eb;
    --text-gray: #6b7280;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--light-gray);
    color: var(--primary-black);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Main Container */
.homepage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}
.homepage-container1 {
    max-width: 1400px;
    margin: 0 auto;
    
}

/* Hero Section - Main Row */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    min-height: 500px;
}

/* Banner Slider - Left Side */
.banner-slider {
    position: relative;
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-gray);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-black) 100%);
    color: var(--pure-white);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.slide.slide-1 {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.slide.slide-2 {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.slide.slide-3 {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-black) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 70%;
}

.slide-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    background: linear-gradient(45deg, var(--pure-white), var(--light-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pure-white);
    color: var(--primary-red);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: var(--light-gray);
    text-decoration: none;
    color: var(--primary-red);
}

.slide-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.nav-dot.active {
    background: var(--pure-white);
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--pure-white);
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--pure-white);
    color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Recent Posts - Right Side */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-posts-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.recent-posts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    border-radius: 2px;
}

.post-item {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-gray);
    transition: var(--transition);
    position: relative;
}

.post-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red), var(--dark-red));
    opacity: 0;
    transition: var(--transition);
}

.post-item:hover::before {
    opacity: 1;
}

.post-content {
    padding: 15px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-icon {
    color: var(--primary-red);
    font-size: 14px;
}

.post-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-title a {
    color: var(--primary-black);
    text-decoration: none;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--primary-red);
}

.post-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--dark-red);
    transform: translateX(3px);
    text-decoration: none;
}

.read-more i {
    font-size: 12px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Auto-playing Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--pure-white);
    transition: width 0.1s linear;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide-content {
        padding: 40px;
        max-width: 80%;
    }
    
    .slide-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide-content {
        padding: 30px;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .recent-posts {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .homepage-container {
        padding: 15px 10px;
    }
    
    .homepage-container1 {
        padding: 0 15px;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .slider-container {
        height: 280px;
    }
    
    .slide-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .slide-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .slide-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .recent-posts-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .post-item {
        margin-bottom: 15px;
    }
    
    .post-content {
        padding: 15px;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 12px;
        font-size: 0.8rem;
    }
    
    .post-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .read-more {
        font-size: 0.85rem;
    }
    
    .featured-products-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .product-price .price,
    .product-price .woocommerce-Price-amount {
        font-size: 1.1rem;
    }
    
    .add-to-cart-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .quick-view-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .view-all-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .tai-loc-section {
        padding: 40px 0;
    }
    
    .tai-loc-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tai-loc-image {
        max-height: 250px;
        order: -1;
        margin-bottom: 20px;
    }
    
    .tai-loc-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .tai-loc-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .tai-loc-point {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px;
        border-radius: 10px;
    }
    
    .point-icon {
        align-self: center;
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
    
    .point-content h3 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .point-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .intro-section {
        padding: 50px 0;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .intro-card {
        border-radius: 12px;
    }
    
    .intro-image {
        height: 180px;
    }
    
    .intro-content {
        padding: 18px;
    }
    
    .intro-content h3 {
        font-size: 1rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .intro-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 480px) {
    .homepage-container {
        padding: 10px 8px;
    }
    
    .homepage-container1 {
        padding: 0 10px;
    }
    
    .hero-section {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .slider-container {
        height: 240px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .slide-button {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .slider-arrow.prev {
        left: 8px;
    }
    
    .slider-arrow.next {
        right: 8px;
    }
    
    .recent-posts-title {
        font-size: 1.3rem;
    }
    
    .post-content {
        padding: 12px;
    }
    
    .post-meta {
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .post-title {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .product-price .price,
    .product-price .woocommerce-Price-amount {
        font-size: 1rem;
    }
    
    .add-to-cart-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .view-all-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .tai-loc-section {
        padding: 30px 0;
    }
    
    .tai-loc-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .tai-loc-point {
        padding: 15px;
        gap: 10px;
    }
    
    .point-content h3 {
        font-size: 1rem;
    }
    
    .point-content p {
        font-size: 0.85rem;
    }
    
    .intro-section {
        padding: 40px 0;
    }
    
    .intro-image {
        height: 160px;
    }
    
    .intro-content {
        padding: 15px;
    }
    
    .intro-content h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .intro-content p {
        font-size: 0.8rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .slider-container {
        height: 200px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .slide-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .slide-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
    transform: none;
}

    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .intro-card:hover {
        transform: none;
    }
    
    .tai-loc-point:hover {
        transform: none;
    }
    
    .nav-dot {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .nav-dot::before {
        content: '';
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        display: block;
        margin: auto;
    }
    
    .nav-dot.active::before {
        background: var(--pure-white);
        transform: scale(1.2);
    }
    
    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .add-to-cart-btn,
    .quick-view-btn,
    .read-more {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide::before {
        background-size: 7px 7px;
    }
    
    .tai-loc-section::before {
        background-size: 7px 7px;
    }
}

/* Tablet Responsive Fixes (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Homepage Container */
    .homepage-container {
        padding: 25px 20px;
        max-width: 1200px;
    }
    
    .homepage-container1 {
        padding: 0 20px;
        max-width: 1200px;
    }
    
    /* Hero Section */
    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide-content {
        padding: 40px;
        max-width: 85%;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    /* Recent Posts on Tablet */
    .recent-posts {
        margin-top: 20px;
    }
    
    .recent-posts-title {
        font-size: 1.6rem;
    }
    
    /* Featured Products */
    .featured-products-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    /* Tai Loc Section - Critical Fix */
    .tai-loc-section {
        padding: 60px 0;
    }
    
    .tai-loc-content {
        display: block; /* Change from grid to block */
        text-align: center;
    }
    
    .tai-loc-image {
        max-height: 350px;
        margin: 0 auto 40px auto;
        max-width: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tai-loc-image img {
        max-width: 100%;
        height: auto;
        max-height: 350px;
    }
    
    .tai-loc-info {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .tai-loc-title {
        font-size: 2.4rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .tai-loc-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .tai-loc-points {
        gap: 20px;
    }
    
    .tai-loc-point {
        padding: 20px;
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .point-content h3 {
        font-size: 1.2rem;
    }
    
    .point-content p {
        font-size: 1rem;
    }
    
    /* Intro Section */
    .intro-section {
        padding: 70px 0;
    }
    
    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }
    
    .intro-image {
        height: 190px;
    }
    
    .intro-content {
        padding: 22px;
    }
    
    .intro-content h3 {
        font-size: 1.05rem;
    }
    
    .intro-content p {
        font-size: 0.92rem;
    }
}

/* Large Tablet Portrait (768px - 900px) */
@media (min-width: 769px) and (max-width: 900px) {
    .tai-loc-content {
        display: block;
    }
    
    .tai-loc-image {
        max-height: 300px;
        margin-bottom: 30px;
    }
    
    .tai-loc-title {
        font-size: 2.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Tablet Landscape (900px - 1024px) */
@media (min-width: 901px) and (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 2fr 1fr;
        gap: 35px;
    }
    
    .tai-loc-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
        align-items: center;
    }
    
    .tai-loc-image {
        max-height: 400px;
        margin-bottom: 0;
        order: 0;
    }
    
    .tai-loc-info {
        text-align: left;
        padding: 0;
    }
    
    .tai-loc-title {
        text-align: left;
    }
    
    .tai-loc-title::after {
        left: 0;
        transform: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .intro-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* iPad Specific (768x1024) */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (orientation: portrait) 
and (-webkit-min-device-pixel-ratio: 1) {
    
    .tai-loc-section {
        padding: 50px 0;
    }
    
    .tai-loc-content {
        display: block;
        text-align: center;
    }
    
    .tai-loc-image {
        max-height: 320px;
        margin-bottom: 35px;
    }
    
    .tai-loc-title {
        font-size: 2.3rem;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* iPad Landscape */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (orientation: landscape) 
and (-webkit-min-device-pixel-ratio: 1) {
    
    .hero-section {
        grid-template-columns: 2fr 1fr;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .tai-loc-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 35px;
    }
    
    .tai-loc-image {
        max-height: 350px;
        margin-bottom: 0;
    }
    
    .tai-loc-info {
        text-align: left;
    }
    
    .tai-loc-title {
        text-align: left;
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .intro-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fix overlapping issues */
@media (min-width: 769px) and (max-width: 1024px) {
    .tai-loc-point:hover {
        transform: translateX(0); /* Remove hover transform on tablet */
    }
    
    .intro-card:hover {
        transform: translateY(-3px); /* Reduce hover effect */
    }
    
    .product-card:hover {
        transform: translateY(-5px); /* Reduce hover effect */
    }
    
    /* Ensure proper stacking */
    .tai-loc-section {
        position: relative;
        z-index: 1;
    }
    
    .featured-products-section {
        position: relative;
        z-index: 2;
    }
    
    .intro-section {
        position: relative;
        z-index: 3;
    }
}

.intro-title-link {
    color: var(--primary-black);
    text-decoration: none;
    transition: var(--transition);
}

.intro-title-link:hover {
    color: var(--primary-red);
    text-decoration: none;
}

/* Shine Effect cho ảnh */
.intro-image {
    position: relative;
    overflow: hidden;
}

.image-shine-effect {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.intro-card:hover .image-shine-effect::before {
    animation: shine 0.85s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Giữ nguyên hiệu ứng scale khi hover */
.intro-card:hover .intro-image img {
    transform: scale(1.05);
}

/* Shine Effect cho product image */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.product-card:hover .product-image::before {
    animation: shine 0.85s;
}