/* css/home.css */
[file name]: home.css
[file content begin]
/* css/home.css */

/* ========== HERO SLIDER ========== */
.hero-slider {
    margin-top: 80px;
    position: relative;
    background: #000;
}

.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
}

.slide.active {
    opacity: 1;
}

/* Add overlay only at bottom for text readability */
.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.5), transparent);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px;
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.slide-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary-gold);
    margin: 15px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.slide-tagline {
    font-size: 1.1rem;
    color: var(--secondary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.slide-order-btn {
    background: linear-gradient(135deg, var(--secondary-gold), #FFA000);
    color: var(--text-dark);
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-order-btn:hover {
    background: linear-gradient(135deg, #FFA000, var(--secondary-gold));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-gold);
    transform: scale(1.2);
}

.dot:hover {
    background: white;
}

/* Quick Menu */
.quick-menu {
    background: white;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    border-top: 3px solid var(--secondary-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-dark);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-menu-item:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.quick-menu-item i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.quick-menu-item span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* For wide screens (laptops, desktops) */
@media (min-width: 1200px) {
    .slider-container {
        height: 550px;
    }
    
    .slide {
        background-size: 100% auto;
        background-position: center top;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.3rem;
    }
}

/* For tablets and smaller laptops */
@media (max-width: 1199px) and (min-width: 768px) {
    .slider-container {
        height: 450px;
    }
    
    .slide {
        background-size: cover;
        background-position: center center;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide::after {
        height: 60%;
    }
}

/* For mobile devices */
@media (max-width: 767px) {
    .hero-slider {
        margin-top: 70px;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .slide {
        background-size: cover;
        background-position: center center;
    }
    
    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .slide-price {
        font-size: 1.5rem;
        margin: 10px 0;
    }
    
    .slide-tagline {
        font-size: 0.8rem;
    }
    
    .slide-order-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slide-content {
        padding: 25px 15px;
    }
    
    .slide::after {
        height: 40%;
    }
    
    .quick-menu {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
    }
}

/* For very small mobile devices */
@media (max-width: 400px) {
    .slider-container {
        height: 250px;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .slide-description {
        font-size: 0.8rem;
    }
    
    .quick-menu {
        grid-template-columns: 1fr;
    }
    
    .slide::after {
        height: 35%;
    }
}

/* Special fix for ultra-wide screens */
@media (min-width: 1600px) {
    .slider-container {
        height: 600px;
    }
    
    .slide {
        background-size: cover;
        background-position: center center;
    }
}

/* For screens with different aspect ratios */
@media (min-aspect-ratio: 16/9) {
    .slide {
        background-size: cover;
        background-position: center center;
    }
}

/* Fix for portrait orientation on mobile */
@media (max-width: 767px) and (orientation: portrait) {
    .slider-container {
        height: 280px;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .slider-container {
        height: 200px;
    }
}




/* Fallback for images that don't fill the width */
.slide {
    background-color: #000;
}

/* Ensure images always fill the width on wide screens */
@media (min-width: 768px) {
    .slide {
        background-size: 100% auto !important;
        background-position: center top !important;
    }
    
    /* For very wide screens, use cover */
    @media (min-width: 1400px) {
        .slide {
            background-size: cover !important;
            background-position: center center !important;
        }
    }
}

/* For mobile, always use cover */
@media (max-width: 767px) {
    .slide {
        background-size: cover !important;
        background-position: center center !important;
    }
}






/* Home Page Specific Styles */
:root {
    --primary-red: #D32F2F;
    --secondary-gold: #FFD700;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f8f8;
    --text-dark: #333;
    --text-light: #fff;
    --accent-orange: #FF9800;
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1565299507177-b0ac66763828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--secondary-gold);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-gold);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 220px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--secondary-gold), #FFA000);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 3px solid var(--secondary-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #FFA000, var(--secondary-gold));
}

.cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
}

.hero-image-floating {
    position: absolute;
    right: 10%;
    bottom: 30%;
    width: 300px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Featured Products Section */
.featured-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-tag {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.product-image {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}

.product-content {
    padding: 30px;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-red);
}

.product-price span {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--primary-red), #B71C1C);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #B71C1C, #9A0000);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.category-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-gold);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    background: rgba(211, 47, 47, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.category-count {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    background: rgba(211, 47, 47, 0.1);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-rating {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), #B71C1C);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.contact-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 30px;
    background: rgba(211, 47, 47, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-image-floating {
        width: 400px;
        right: 5%;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .hero-image-floating {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 18px 30px;
        min-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-card, .contact-card, .feature-card {
        padding: 30px 20px;
    }
}











/* BEST SELLERS */

.best-sellers{
padding:90px 0;
background:#f8f8f8;
}

.best-seller-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
padding:0 20px;
}

.best-item{
background:#fff;
border-radius:18px;
padding:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.best-item:hover{
transform:translateY(-8px);
}

.best-item img{
width:100%;
height:180px;
object-fit:cover;
border-radius:12px;
margin-bottom:10px;
}

.best-item h3{
font-size:18px;
font-weight:700;
}

.price{
color:#D32F2F;
font-weight:800;
margin:10px 0;
}

.order-btn{
background:#D32F2F;
color:#fff;
padding:10px 20px;
border-radius:25px;
text-decoration:none;
font-weight:600;
}

.order-btn:hover{
background:#b71c1c;
}


/* EXPLORE MENU */

.explore-menu{
padding:100px 0;
background:#fff;
}

.explore-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
padding:0 20px;
}

.explore-card{
background:#fff;
border-radius:18px;
overflow:hidden;
text-decoration:none;
color:#000;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.3s;
}

.explore-card:hover{
transform:translateY(-8px);
}

.explore-card img{
width:100%;
height:160px;
object-fit:cover;
}

.explore-info{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 18px;
font-weight:700;
}

.arrow{
font-size:20px;
color:#D32F2F;
}