.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price small {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.35);
}

/* VIDEO PLAY BUTTON ON PRODUCT CARDS */
.product-video-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.4);
    animation: pulse-video 2s infinite;
}

.product-video-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.6);
    border-color: var(--white);
}

.product-video-btn svg {
    margin-left: 2px;
}

@keyframes pulse-video {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(194, 24, 91, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(194, 24, 91, 0.7);
    }
}

/* HOW IT WORKS */
.how-it-works {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.how-it-works .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 50px 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    margin-top: 30px;
    height: 100%;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    box-shadow: 0 10px 20px rgba(194, 24, 91, 0.3);
    border: 4px solid var(--dark);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.step-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* SHIPPING INFO SECTION */
.shipping-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%);
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.shipping-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.shipping-card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.shipping-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.shipping-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.shipping-card .highlight {
    color: #2e7d32;
    font-weight: 600;
}