/* Main Layout Styles */
.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
    padding-top: 80px; /* Adjust based on header height */
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: #f39c12;
    padding: 8px 0;
    color: #fff;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: #fff;
    margin-right: 20px;
    font-size: 14px;
    text-decoration: none;
}

.contact-info a:hover {
    color: #f39c12;
}

.social-links a {
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
}

.social-links a:hover {
    color: #f39c12;
}

.main-header {
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
    background-color: white;
    padding: 5px 15px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.main-nav a:hover {
    color: white;
    background-color: #f39c12;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.main-nav a:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

.nav-buttons a {
    color: #f39c12;
    margin-left: 15px;
    font-size: 18px;
    background-color: white;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #f39c12;
}

.nav-buttons a:hover {
    background-color: #f39c12;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.nav-buttons a:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

/* User icon button hover effect is defined above */

/* Footer Styles */
.site-footer {
    background-color: #f39c12;
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-widget h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #f39c12;
}

.footer-widget p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-widget ul li a:hover {
    color: #333;
    text-decoration: underline;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: white;
    font-size: 16px;
    padding-left: 0;
}

.contact-info li i {
    margin-right: 10px;
    color: whitesmoke;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    background-color: #f39c12;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

/* Home Page Styles */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Content/Images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
}

.hero-btn {
    padding: 14px 36px;
    font-size: 16px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 32px;
    font-weight: 700;
}

.section-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f39c12;
    margin: 15px auto 0;
}

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

/* Product Card */
.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f39c12;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    color: #f39c12;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.product-buttons {
    display: flex;
    justify-content: space-between;
}

.product-buttons a {
    flex: 1;
    text-align: center;
    padding: 8px;
    text-decoration: none;
}

.view-btn {
    background-color: #f39c12;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.view-btn:hover {
    background-color: #e67e22;
    color: #fff;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Benefits Section */
.why-choose {
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon svg {
    fill: #f39c12;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Deals Section */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.deal-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.deal-image {
    height: 200px;
    position: relative;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f39c12;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.deal-content {
    padding: 20px;
}

.deal-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.deal-price {
    margin-bottom: 15px;
}

.deal-sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #f39c12;
}

.deal-btn {
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 8px;
    }
    
    .main-header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0 10px 10px;
    }
    
    .nav-buttons {
        margin: 0 auto;
    }
    
    .hero {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .grid,
    .benefits-grid,
    .deals-grid {
        gap: 20px;
    }
}
