:root {
    --primary: #FF6F00;
    --primary-hover: #E65100;
    --secondary: #1B5E20;
    --bg-white: #FFFFFF;
    --accent: #FFF3E0;
    --text-dark: #333333;
    --text-light: #777777;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.navbar-brand {
    color: var(--secondary) !important;
    font-weight: 800;
    font-size: 1.8rem;
}
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: 0.3s;
    margin: 0 10px;
}
.nav-link:hover {
    color: var(--primary) !important;
}
.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 24px;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255,111,0,0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(255,243,224,0.3) 100%);
    padding: 100px 0;
    position: relative;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}
.hero-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Products */
.product-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.product-image-container {
    height: 250px;
    overflow: hidden;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image {
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image {
    transform: scale(1.1);
}
.product-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}
.product-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer & Utilities */
.footer {
    background-color: var(--secondary);
    color: white;
    padding: 60px 0 20px;
}
.footer-links a {
    color: #a5d6a7;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.feature-card {
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    background-color: white !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.category-card {
    transition: all 0.3s;
}
.category-card:hover .category-img-wrapper {
    transform: scale(1.05);
    border-color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(255,111,0,0.2);
}
.category-img-wrapper { transition: 0.3s; }
.ls-1 { letter-spacing: 2px; }
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}
.hover-primary:hover {
    color: var(--primary) !important;
}
.nav-icons a { transition: 0.3s; }
.nav-icons a:hover { color: var(--primary) !important; }
.footer-links a::before {
    content: "›";
    margin-right: 8px;
    color: var(--primary);
}
