/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1541913052187-84e0c812c30f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 8px solid #f39c12;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

header h1 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

header p {
    font-size: 1.4rem;
    margin-top: 15px;
    font-weight: 300;
    font-style: italic;
    color: #f39c12;
}

/* Menu/Navigation Styles */
menu {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

menu ul li a {
    display: block;
    padding: 25px 40px;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid transparent;
}

menu ul li a:hover {
    color: #f39c12;
    background-color: rgba(255,255,255,0.05);
    border-bottom: 4px solid #f39c12;
    transform: translateY(-3px);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin: 40px auto;
    width: 85%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(243, 156, 18, 0.4);
    animation: bounceIn 1.2s ease;
}

.hero-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.button-gold {
    background: #fff;
    color: #e67e22;
    border: none;
    padding: 18px 50px;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s;
    text-transform: uppercase;
}

.button-gold:hover {
    transform: scale(1.15) rotate(-2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background: #2c3e50;
    color: #fff;
}

/* Main Content Wrapper */
/* .container customized for spacing if needed, but let Bootstrap handle layout */
.container {
    padding: 0 20px;
}

/* Products Section */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product {
    background-color: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border-top: 8px solid #bdc3c7;
}

.product:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-top-color: #f39c12;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: 0.6s;
}

.product:hover::before {
    left: 100%;
}

.product h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.product p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.product .price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #e74c3c;
    margin: 25px 0;
    display: block;
    background: #fff5f5;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #e74c3c;
    color: white;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* General Button Styles */
.button {
    background: linear-gradient(to right, #2ecc71, #27ae60);
    color: #fff;
    border: none;
    padding: 15px 30px;
    width: 100%;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 900;
    text-transform: uppercase;
}

.button:hover {
    filter: brightness(1.1);
    letter-spacing: 1px;
}

/* Sidebar Styles */
.sidebar {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    top: 100px;
    z-index: 10;
}

.sidebar h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #f39c12;
}

.reasons li {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    font-weight: 500;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
    background: #3498db;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 900;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #2980b9;
    transform: rotate(5deg);
}

/* Footer Styles */
.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 0; /* Bootstrap container/py-5 handles padding */
    border-top: 10px solid #f39c12;
}

.footer-item {
    text-align: inherit; /* Allow Bootstrap classes like text-center text-md-start to work */
}

/* Animations */
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@media (max-width: 1000px) {
    header h1 { font-size: 2.2rem; }
}


