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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222222;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-text h1 {
    font-size: 24px;
    color: #222222;
}

.logo-text h1 span {
    color: #E67E22;
}

.logo-text p {
    font-size: 12px;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a:hover {
    color: #E67E22;
}

#cart-icon, #mobile-cart-icon {
    font-weight: bold;
    color: #E67E22;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #222;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1002;
    transition: left 0.3s;
    padding: 60px 20px 20px;
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav .close-mobile {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F5F5 0%, #EEEEEE 100%);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222222;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #E67E22;
    color: white;
}

.btn-primary:hover {
    background: #D35400;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #222222;
    color: white;
}

.btn-secondary:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #FFFFFF;
}

.products h2, .about h2, .contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #222222;
}

.products h2 i, .about h2 i, .contact h2 i {
    color: #E67E22;
    margin-right: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.category-filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    margin: 0 5px 10px;
    background: #F5F5F5;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active, .filter-btn:hover {
    background: #E67E22;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #F5F5F5;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.product-category {
    color: #E67E22;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #E67E22;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-left: 10px;
}

/* Product Description with Read More */
.product-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
    position: relative;
}

.product-description .short-desc {
    display: inline;
}

.product-description .full-desc {
    display: none;
}

.product-description.expanded .full-desc {
    display: inline;
}

.product-description.expanded .short-desc {
    display: none;
}

.read-more-btn {
    color: #E67E22;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px;
    text-decoration: none;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-add, .btn-call {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-add {
    background: #E67E22;
    color: white;
}

.btn-add:hover {
    background: #D35400;
}

.btn-call {
    background: #222222;
    color: white;
}

.btn-call:hover {
    background: #444;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #EEE;
}

.cart-header h3 i {
    color: #E67E22;
    margin-right: 10px;
}

.close-cart {
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 50px 20px;
    color: #999;
}

.empty-cart i {
    font-size: 60px;
    margin-bottom: 15px;
    color: #DDD;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #EEE;
    align-items: center;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #EEE;
}

.cart-total {
    font-size: 20px;
    margin-bottom: 15px;
}

.btn-checkout, .btn-clear-cart {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-checkout {
    background: #25D366;
    color: white;
}

.btn-clear-cart {
    background: #F5F5F5;
    color: #222;
}

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

.cart-overlay.active {
    display: block;
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #E67E22;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: floatCart 2s ease-in-out infinite;
}

.floating-cart:hover {
    transform: scale(1.1);
    background: #D35400;
}

.floating-cart i {
    font-size: 28px;
}

.floating-cart .cart-floating-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #222;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Floating Buttons - WhatsApp & Call */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-wa, .float-call {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.float-wa {
    background: #25D366;
    color: white;
}

.float-call {
    background: #E67E22;
    color: white;
}

.float-wa i, .float-call i {
    font-size: 24px;
}

.float-wa:hover, .float-call:hover {
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #F5F5F5;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature {
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.feature i {
    font-size: 40px;
    color: #E67E22;
    margin-bottom: 15px;
}

.feature h4 {
    color: #222;
    margin-bottom: 10px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #E67E22;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #E67E22;
    width: 25px;
}

.contact-info a {
    color: #E67E22;
    text-decoration: none;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #DDD;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #222222;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #E67E22;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #E67E22;
}

.footer-section p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* ============================================ */
/* RESPONSIVE DESIGN - 2 PRODUCTS ON MOBILE */
/* ============================================ */

/* Tablet View (769px - 1024px) - 3 products per row */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile View (max 768px) - 2 products per row */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 14px;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .product-category {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .product-price {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .old-price {
        font-size: 12px;
    }
    
    .product-description {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .read-more-btn {
        font-size: 10px;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-add, .btn-call {
        padding: 8px;
        font-size: 11px;
    }
    
    .btn-add i, .btn-call i {
        font-size: 11px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    /* Navigation for mobile */
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-wa span, .float-call span {
        display: inline-block;
        font-size: 14px;
    }
    
    .float-wa, .float-call {
        padding: 10px 16px;
    }
    
    .float-wa i, .float-call i {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section p {
        justify-content: center;
    }
    
    .floating-cart {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-cart i {
        font-size: 24px;
    }
}

/* Very Small Phones (max 480px) */
@media (max-width: 480px) {
    .products-grid {
        gap: 10px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .product-price {
        font-size: 13px;
    }
    
    .product-description {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .read-more-btn {
        font-size: 9px;
    }
    
    .btn-add, .btn-call {
        padding: 6px;
        font-size: 9px;
    }
    
    .btn-add i, .btn-call i {
        font-size: 9px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        justify-content: center;
    }
    
    .category-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .float-wa span, .float-call span {
        font-size: 12px;
    }
    
    .float-wa, .float-call {
        padding: 8px 14px;
    }
}

.loading {
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #666;
}

.loading i {
    color: #E67E22;
}

/* Animations */
@keyframes floatCart {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes addedToCart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); background: #FFF9F0; }
}

.product-card.added {
    animation: addedToCart 0.5s ease;
}

.cart-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #E67E22;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 1003;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.cart-toast i {
    font-size: 24px;
}

.cart-toast .view-cart-btn {
    background: white;
    color: #E67E22;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}