/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

a {
    color: #e91e63;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c2185b;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-outline-primary {
    background-color: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-outline-primary:hover {
    background-color: #e91e63;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #333;
}

.btn-success {
    background-color: #4caf50;
    color: white;
}

.btn-success:hover {
    background-color: #45a049;
}

.btn-outline-secondary {
    background-color: transparent;
    color: #666;
    border: 2px solid #666;
}

.btn-outline-secondary:hover {
    background-color: #666;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    font-size: 14px;
}

.announcement-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Header */
.header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.main-nav ul li {
    margin: 0 20px;
}

.main-nav ul li a {
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: #e91e63;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.whatsapp-btn, .cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn {
    background-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cart-btn {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4757;
    color: white;
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Hero Section with Slider */
.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* E-commerce Product Grid */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card .product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
    min-height: 50px;
}

.product-card .product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
}

.product-card .product-price {
    font-size: 24px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 20px;
}

.product-card .product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-card .product-actions .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 13px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.featured-products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.featured-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-product-card .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.featured-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.featured-product-card:hover .product-image img {
    transform: scale(1.1);
}

.featured-product-card .product-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-card .product-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.featured-product-card .product-price {
    font-size: 24px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 20px;
}

.featured-product-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 30px;
    text-align: center;
}

.category-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Special Offers Section */
.special-offers-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    min-height: 280px;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-image {
    width: 40%;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.offer-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.offer-price {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.new-price {
    font-size: 28px;
    font-weight: 700;
    color: #e91e63;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: #e91e63;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.rating {
    color: #ffc107;
    font-size: 14px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-category {
    margin-bottom: 80px;
}

.service-category h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    position: relative;
}

.service-category h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Product Details Section */
.product-details-section {
    padding: 80px 0;
}

.product-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-info h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.product-category {
    margin-bottom: 25px;
}

.product-category span {
    color: #666;
    font-size: 16px;
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 25px;
}

.product-description {
    margin-bottom: 35px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.product-quantity {
    margin-bottom: 35px;
}

.product-quantity label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.quantity-control {
    display: flex;
    align-items: center;
    width: 180px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    color: #333;
}

.quantity-btn:hover {
    background-color: #e91e63;
    color: white;
}

.quantity-control input {
    width: 80px;
    height: 50px;
    text-align: center;
    border: none;
    font-size: 18px;
    font-weight: 600;
    background-color: white;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 15px;
}

.meta-item i {
    color: #e91e63;
    font-size: 18px;
}

/* Cart Section */
.cart-section {
    padding: 80px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cart-table th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f3f5;
}

.product-info {
    display: flex;
    align-items: center;
}

.product-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-quantity input {
    width: 70px;
    padding: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 6px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.cart-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cart-summary h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

.summary-row.total {
    font-weight: 600;
    font-size: 20px;
    color: #e91e63;
    border-top: 2px solid #f1f3f5;
    padding-top: 20px;
    margin-top: 20px;
}

.empty-cart {
    text-align: center;
    padding: 80px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.empty-cart-icon {
    font-size: 80px;
    color: #dee2e6;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 70px 0 25px;
}

.footer-about h3, .footer-links h3, .footer-contact h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-about h3::after, .footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #b8c3cc;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: #e91e63;
    padding-left: 5px;
}

.footer-contact p {
    color: #b8c3cc;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-contact i {
    margin-right: 12px;
    color: #e91e63;
    width: 20px;
    text-align: center;
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background-color: #e91e63;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c3cc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Notifications */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 18px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    animation: slideIn 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 15px;
}

.notification.success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.notification.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .featured-products-slider {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .offers-container {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        flex-direction: column;
        height: auto;
    }
    
    .offer-image, .offer-content {
        width: 100%;
    }
    
    .offer-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .featured-products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-card .product-image {
        height: 200px;
    }
    
    .featured-product-card .product-image {
        height: 200px;
    }
    
    .product-card .product-content {
        padding: 20px;
    }
    
    .featured-product-card .product-content {
        padding: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
    
    .cart-table {
        font-size: 14px;
    }
    
    .product-info {
        flex-direction: column;
        text-align: center;
    }
    
    .product-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-details-section .row {
        flex-direction: column;
    }
    
    .product-image {
        margin-bottom: 30px;
    }
    
    .product-info h1 {
        font-size: 28px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .category-image {
        height: 180px;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .featured-products-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card .product-image {
        height: 160px;
    }
    
    .featured-product-card .product-image {
        height: 160px;
    }
    
    .product-card .product-content {
        padding: 15px;
    }
    
    .featured-product-card .product-content {
        padding: 15px;
    }
    
    .product-card .product-content h4 {
        font-size: 16px;
        min-height: 40px;
    }
    
    .featured-product-card .product-content h4 {
        font-size: 16px;
    }
    
    .product-card .product-price {
        font-size: 20px;
    }
    
    .featured-product-card .product-price {
        font-size: 20px;
    }
    
    .product-card .btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .featured-product-card .btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .service-category {
        margin-bottom: 50px;
    }
    
    .service-category h3 {
        font-size: 26px;
    }
}