    .shop-item:hover {
        transform: translateY(-10px);
    }
    
    /* Uniform product image sizes on index page */
    .portfolio-section .portfolio-block .image-box {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .portfolio-section .portfolio-block .image {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .portfolio-section .portfolio-block .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    }
    .shop-item:hover img {
        transform: scale(1.05);
    }
    
    /* View All Products Button - Increased padding for longer text */
    .portfolio-section .theme-btn.btn-style-two {
        padding: 18px 40px;
        font-size: 16px;
    }
    
    /* Occasion Modal Styles */
    .occasion-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .occasion-modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
    }
    
    .occasion-modal-content {
        position: relative;
        background: white;
        border-radius: 12px;
        max-width: 900px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 10001;
        padding: 40px;
        margin: 20px;
    }
    
    .occasion-modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        color: #666;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
        transition: color 0.3s;
        z-index: 10002;
    }
    
    .occasion-modal-close:hover {
        color: #5FCAC4;
    }
    
    .occasion-modal-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .occasion-modal-header h2 {
        color: #333;
        font-size: 28px;
        margin: 0 0 15px 0;
    }
    
    .occasion-modal-description {
        color: #666;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .occasion-cakes-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .occasion-cake-item {
        text-align: center;
    }
    
    .occasion-cake-item img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        background: #f5f5f5;
        border-radius: 8px;
        padding: 10px;
        margin-bottom: 10px;
        border: 2px solid #e9ecef;
        transition: transform 0.3s, border-color 0.3s;
    }
    
    .occasion-cake-item img:hover {
        transform: scale(1.05);
        border-color: #5FCAC4;
    }
    
    .occasion-see-more {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
    }
    
    .occasion-see-more-btn {
        display: inline-block;
        padding: 12px 30px;
        background: linear-gradient(135deg, #5FCAC4 0%, #4da8a2 100%);
        color: white;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(95, 202, 196, 0.3);
    }
    
    .occasion-see-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(95, 202, 196, 0.4);
        color: white;
    }
    
    .modal-loading {
        text-align: center;
        padding: 40px;
        color: #666;
    }
    
    .occasion-clickable {
        transition: transform 0.3s;
    }
    
    .occasion-clickable:hover {
        transform: translateY(-5px);
    }
    
    @media (max-width: 768px) {
        .occasion-modal-content {
            padding: 20px;
            width: 95%;
        }
        
        .occasion-cakes-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .occasion-cake-item img {
            height: 150px;
        }
    }