* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #000000;
    --secondary-green: #333333;
    --accent-green: #666666;
    --light-green: #f0f0f0;
    --dark-green: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-cream: #faf9f6;
    --bg-white: #ffffff;
    --border-color: #d0d0d0;
    --success-color: #000000;
    --error-color: #d32f2f;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background:#ebe7e7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header & Navigation */
header {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--light-green);
}


nav {
    padding-left: 5px;
    padding-right: 10px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-green);
}

.logo a {
    text-decoration: none;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--light-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
}

.cart-icon:hover {
    background: var(--accent-green);
    color: white;
    transform: scale(1.05);
}

.cart-icon-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error-color);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: var(--shadow-md);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: var(--light-green);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section with Slideshow */
.h{
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 50px;

}
.hero {
    background: url('mane.jpeg') center center / cover no-repeat;
   box-flex-group:#201e1e;
    background-size: cover;
    background-position: center;
    color: var(--text-dark);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
}

/* Slideshow Container */
.slideshow-container {
    max-width: 900px;
    position: relative;
    margin: 50px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Slides hide by default */
.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    vertical-align: middle;
}

/* Next & Previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.4s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    text-decoration: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption Styling */
.text-overlay {
    color: #ffffff;
    font-size: 22px;
    padding: 20px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

/* Animation */
.fade {
    animation: fadeEffect 0.8s;
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.hero-content {
  
   align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    animation: fadeInUp 1.2s;
    font-weight: 600;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    animation: fadeInUp 1.4s;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1.6s;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: #000000;
    color: white;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    border: 2px solid #000000;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    border-color: #333333;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: 2px solid #000000;
    text-shadow: none;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-section {
    margin-right: 2rem;
}

/* Section Headers */
.section-header {
  
    text-align: center;
    margin: 5rem 0 3rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid var(--border-color);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--light-green) 0%, #e0e0e0 100%);
    display: flex;
    
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-info .category {
    font-size: 0.85rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info .description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    min-height: 48px;
}

.product-info .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-info .price .original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.product-info .price .discounted-price {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
}

.product-info .price .discount-amount {
    color: var(--error-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.add-to-cart-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    background: var(--primary-green);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.cart-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.close-cart {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--bg-cream);
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 3px;
}

.cart-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.cart-item-image {
    width: 15px;
    height: 15px;
    background: var(--light-green);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-info .price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: scale(1.1);
}

.quantity {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.remove-item {
    background: var(--error-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.remove-item:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-footer {
    padding: 2rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-white);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.cart-total span:last-child {
    color: var(--primary-green);
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    display: none;
}

.overlay.show {
    display: block;
}

/* Features Section */
.features {
    background: white;
    padding: 4rem 0;
    margin: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--light-green);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--dark-green);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Notification */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--success-color);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 3000;
    animation: slideIn 0.4s ease;
    display: none;
    font-weight: 600;
    min-width: 300px;
}

.notification.error {
    background: var(--error-color);
}

.notification.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Page Content Styles */
.page-content {
    min-height: 60vh;
    padding: 4rem 0;
}

.content-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    border: 2px solid var(--border-color);
}

.content-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.content-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.contact-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
}

/* Responsive */
@media (min-width: 481px) and (max-width: 768px) {
    header {
        padding: 0.3rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .cart-icon {
        padding: 0.4rem 0.8rem;
        font-size: 1.2rem;
    }

    .cart-icon-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 0.5rem 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
        border-top: 2px solid var(--light-green);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1.5rem;
        width: 100%;
        border: none;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .cart-item-info h4 {
        font-size: 1rem;
    }

    .cart-item-info .price {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .quantity-controls {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .quantity {
        min-width: 35px;
        font-size: 1rem;
    }

    .remove-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        background-attachment: scroll;
        padding: 0;
        min-height: 100vh;
        background: rgba(240,248,255,0.8) url('mane.jpeg') center center / contain no-repeat !important;
        padding-top: 6rem !important;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    }

    .hero .subtitle {
        font-size: 1.2rem;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.5);
    }

    .hero .description {
        font-size: 1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    nav {
        padding: 0 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 5rem 1.5rem 4rem;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .bismillah {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 4rem !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero .description {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    nav {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .features-grid {
        padding: 0 1rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .content-box {
        padding: 1.5rem 1rem;
    }

    .contact-info {
        gap: 1rem;
    }
}

