/* Announcement Bar */
.announcement-bar {
    padding: 12px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.announcement-link {
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.announcement-link:hover {
    opacity: 0.8;
}

/* Hero Modern */
.hero-modern {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.btn-hero {
    background: white;
    color: #2c3e50;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Section Headers */
.section-header {
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.view-all-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

/* Shop by Pets Type */
.shop-by-pets {
    background: white;
}

.pets-carousel-container {
    position: relative;
    padding: 0 60px;
}

.pets-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.pets-carousel::-webkit-scrollbar {
    display: none;
}

.pet-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.pet-category-item:hover {
    transform: translateY(-10px);
}

.pet-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pet-circle:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pet-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pet-circle i {
    font-size: 3rem;
    opacity: 0.6;
}

.pet-name {
    margin-top: 15px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e9ecef;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Weekly Offers */
.weekly-offers {
    background: #f8f9fa;
}

.offer-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.offer-tab {
    padding: 10px 25px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-tab:hover,
.offer-tab.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.offer-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.offer-image-container {
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offer-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image-container img {
    transform: scale(1.05);
}

.offer-content {
    padding: 20px;
}

.offer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    min-height: 48px;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
}

.sale-price {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.3rem;
}

.current-price {
    color: #667eea;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Promotional Banners */
.promotional-section {
    background: white;
}

.promo-banner-link {
    text-decoration: none;
}

.promo-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

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

.promo-banner:hover img {
    transform: scale(1.1);
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 30px;
    text-align: center;
}

.promo-banner:hover .promo-overlay {
    opacity: 1;
}

.promo-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-overlay p {
    font-size: 1.1rem;
}

/* Features Modern */
.features-modern {
    background: white;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-text {
    color: #6c757d;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-slide {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pets-carousel-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-slide {
        padding: 40px 0;
        min-height: 350px;
    }
    
    .hero-image {
        max-height: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pet-circle {
        width: 100px;
        height: 100px;
    }
    
    .pets-carousel-container {
        padding: 0 20px;
    }
    
    .offers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .promo-banner {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .announcement-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
}
