/* slider.css - MINIMAL WORKING VERSION */
/* ===== HERO SECTION ===== */
.hero-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 500px;
    position: relative;
    margin-bottom: 2rem;
}

.verse-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.verse-slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
    color: white;
    z-index: 1;
}

.verse-slide.active {
    opacity: 0;
    z-index: 2;
}

.greeting-container {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
    text-align: center;
}

.greeting-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.greeting-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.verse-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.verse-text {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.4;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

.verse-reference {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f1c40f;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.dot.active {
    background-color: #f1c40f;
    transform: scale(1.2);
    border-color: white;
}

/* ===== PROMO CONTAINER ===== */
.promo-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.categories-promo,
.birthday-promo {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

/* ===== CATEGORIES SLIDER - SIMPLE FIX ===== */
.categories-slider {
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #2c3e50; /* Fallback color */
}

.categories-slider .category-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px !important;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}


.categories-slider .category-slide.active {
    opacity: 1;
    z-index: 2;
}

.categories-slider .category-slide img {
    width: 260px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #3498db;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    width: 300px !important;     /* Larger container */
    height: 160px !important;    /* Larger container */
    object-fit: contain !important;
    background-color: rgba(255, 255, 255, 0.1) !important; /* Background for empty space */
    padding: 5px !important;     /* Add padding inside */
}


/* Slider controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
    z-index: 10;
}

.slider-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #e67e22;
    transform: scale(1.1);
}

/* ===== BIRTHDAY/POPULAR GIFTS ===== */
.birthday-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.birthday-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
}

.birthday-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.birthday-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.8rem;
}

.birthday-product h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.birthday-product p {
    color: var(--secondary);
    font-weight: 600;
}

.loading-popular {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-section { height: 450px; }
    .greeting-title { font-size: 2.5rem; }
    .verse-text { font-size: 1.6rem; }
    .promo-container { flex-direction: column; }
}

@media (max-width: 768px) {
    .hero-section { height: 400px; }
    .greeting-title { font-size: 2rem; }
    .greeting-subtitle { font-size: 1rem; }
    .verse-text { font-size: 1.3rem; }
    .verse-slide { padding: 2rem; }
    .verse-reference { font-size: 1.1rem; }
    .categories-slider { height: 280px; }
}

@media (max-width: 576px) {
    .hero-section { height: 350px; }
    .greeting-title { font-size: 1.6rem; }
    .greeting-subtitle { font-size: 0.9rem; }
    .verse-text { font-size: 1.1rem; }
    .verse-slide { padding: 1.5rem; }
    .categories-slider { height: 260px; }
    .birthday-products { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
    .hero-section { height: 300px; }
    .greeting-title { font-size: 1.4rem; }
    .greeting-subtitle { font-size: 0.8rem; }
    .verse-text { font-size: 1rem; }
    .verse-slide { padding: 1rem; }
}

