* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdf3e7;
    color: #3e2c1b;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Contact Bar */
.contact-bar {
    background-color: #5a3e2b;
    color: white;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1001;
}

.contact-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-bar a:hover {
    color: #ffd700;
}

.contact-bar i {
    color: #ffd700;
    margin-right: 5px;
}

/* Navigation with Black Background */
.navbar {
    background-color: #000000 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border-bottom: 2px solid #ffd700;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.brand-name {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem !important;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #000 !important;
    background-color: #ffd700;
    transform: translateY(-2px);
}

.nav-link i {
    margin-right: 5px;
}

/* Fixed Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: auto;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
    border: 2px solid white;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;
}

.float-btn.call-btn {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.float-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-btn i {
    animation: ring 2s infinite;
    font-size: 1.8rem;
    line-height: 1;
}

@keyframes pulse {
    0% { box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 5px 25px rgba(255,215,0,0.6); }
    100% { box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    25% { transform: rotate(0deg); }
}

/* Tooltip for floating buttons */
.float-btn .tooltip-text {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #ffd700;
    z-index: 99999;
}

.float-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Hero Carousel */
.hero-carousel {
    margin-top: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    height: 500px;
    position: relative;
    background-color: #2b1b0f;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 50%;
    left: 15%;
    transform: translateY(50%);
    padding: 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    z-index: 2;
    text-align: center;
    color: white;
    display: block !important;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease 0.3s both;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 0;
}

.carousel-indicators {
    z-index: 3;
    bottom: 20px;
}

.carousel-control-prev, .carousel-control-next {
    z-index: 3;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    margin: 0 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section - Simplified Cards */
.products {
    padding: 60px 15px;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h3 {
    font-size: 2rem;
    color: #b74d1a;
    margin-bottom: 0.8rem;
    font-family: 'Georgia', serif;
    position: relative;
    display: inline-block;
}

.section-title h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffd700;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #f0e0d0;
    height: 100%;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Product image - Full width */
.product-image {
    width: 100%;
    aspect-ratio: 1/1; /* Square image */
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #000;
    padding: 5px 12px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-details {
    padding: 15px;
    text-align: center;
}

.product-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #5a3e2b;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.4rem;
    color: #b74d1a;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price-kg {
    font-size: 0.9rem;
    color: #8b6b4f;
    font-weight: normal;
    background: #f0e0d0;
    padding: 3px 8px;
    border-radius: 20px;
}

/* WhatsApp Buy Button */
.btn-whatsapp-buy {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-buy:hover {
    background: linear-gradient(135deg, #128C7E, #075e54);
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-buy i {
    font-size: 1.2rem;
}

/* Categories Section */
.categories {
    padding: 60px 15px;
    background-color: #f9f1e9;
}

.category-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
    margin-bottom: 20px;
    height: 100%;
}

.category-item:hover {
    transform: scale(1.05);
    background-color: #b74d1a;
    color: white;
}

.category-item i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #b74d1a;
}

.category-item:hover i {
    color: white;
}

.category-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.category-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 60px 15px;
    background: linear-gradient(135deg, #5a3e2b 0%, #3e2c1b 100%);
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.company-details {
    margin-top: 1.5rem;
    text-align: left;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
}

.company-details h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.company-details p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.company-details i {
    color: #ffd700;
    width: 20px;
}

/* Footer */
.footer {
    background-color: #2b1b0f;
    color: white;
    padding: 60px 0 20px;
}

.footer h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer p, .footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer a:hover {
    color: #ffd700;
}

.footer i {
    color: #ffd700;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #5a3e2b;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #b74d1a;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 99999;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back-to-top:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-5px);
}

/* Mobile Specific Styles - Card 1 column */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        right: 5%;
        left: 5%;
        padding: 15px 10px;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    /* Products - 1 column on mobile */
    .products .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .product-image {
        aspect-ratio: 1/1;
    }
    
    .product-name {
        font-size: 1.3rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer .row > div {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.4rem;
    }
}

.hero-carousel img{
    width:100%;
    height:550px;
    object-fit:cover;
}

/* Mobile Fix */
@media (max-width:768px){

.hero-carousel img{
    height:250px;
    object-fit:cover;
}

.carousel-caption{
    bottom:10px;
}

.carousel-caption h2{
    font-size:18px;
}

.carousel-caption p{
    font-size:13px;
}

}