/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.header {
    /* position: fixed; */
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #c56127;
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid #f0f0f0; */
}

.navbar {
    background: #c56127;
    box-shadow: none;
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000;
}

/* .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
} */

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-icon:hover {
    color: #000;
}

.nav-icon i {
    transition: transform 0.2s ease;
}

.nav-icon:hover i {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* margin-top: 80px; */
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
    opacity: 0.9;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #1a1a1a;
}

.cta-button:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: #fafafa;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    
}

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

.category-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Added shadow */
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* Enhanced shadow on hover */
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 440px; /* Increased from 350px */
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-content {
    padding: 30px;
    text-align: center;
}

.category-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-transform: uppercase; /* Added uppercase */
}

.category-content p {
    color: #888;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.6;
    padding: 0 10px;
}

.category-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #666;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1a1a1a;
    color: white;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.sale {
    background: #e74c3c;
}

.product-badge.new {
    background: #27ae60;
}

.product-badge.popular {
    background: #9b59b6;
}

.product-badge.premium {
    background: #f39c12;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.wishlist-btn,
.quick-view-btn {
    background: white;
    border: none;
    padding: 10px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-btn {
    color: #666;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    background: #e74c3c;
    color: white;
}

.quick-view-btn {
    color: #1a1a1a;
    padding: 8px 12px;
    font-size: 11px;
}

.quick-view-btn:hover {
    background: #1a1a1a;
    color: white;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-info .description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-weight: 400;
}

.add-to-cart {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    padding: 15px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: transparent;
    color: #1a1a1a;
}

/* Special Offers */
.special-offers {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.special-offers h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.offer-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.offer-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f39c12;
}

.offer-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-card p {
    color: #ccc;
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: #fafafa;
    padding: 140px 0 80px;
    text-align: center;
    color: #1a1a1a;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.2s both;
    color: #666;
}

/* Products Page Styles */
.search-filters {
    padding: 60px 0;
    background: #fafafa;
    margin-top: 80px;
}

.search-bar {
    display: flex;
    max-width: 500px;
    margin: 0 auto 40px;
    border: 1px solid #e0e0e0;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    background: white;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    padding: 15px 25px;
    background: #1a1a1a;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #333;
}

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

.filters select {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    background: white;
    cursor: pointer;
    font-size: 14px;
    min-width: 150px;
}

.filters select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.load-more-section {
    padding: 60px 0;
    text-align: center;
}

.load-more-btn {
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    padding: 15px 40px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: transparent;
    color: #1a1a1a;
}

/* Advertisements Page Styles */
.featured-banner {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.banner-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.banner-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f39c12;
    font-weight: 600;
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
}

.countdown {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 15px;
    border-radius: 0;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.countdown-item label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-image img {
    width: 100%;
    border-radius: 0;
}

.discount-codes {
    padding: 100px 0;
    background: #fafafa;
}

.discount-codes h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.code-card {
    background: white;
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

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

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.code-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.code-details {
    margin: 25px 0;
}

.code-details span {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 13px;
}

.copy-code {
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    padding: 12px 30px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.copy-code:hover {
    background: transparent;
    color: #1a1a1a;
}

/* Flash Sales */
.flash-sales {
    padding: 100px 0;
}

.flash-sales h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.flash-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.flash-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.flash-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.flash-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flash-content {
    padding: 25px;
}

.flash-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.flash-price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-weight: 400;
}

.flash-price .sale-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.flash-timer {
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
}

.flash-timer .timer {
    font-weight: 600;
    color: #e74c3c;
}

.buy-now {
    width: 100%;
    background: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
    padding: 15px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.buy-now:hover {
    background: transparent;
    color: #e74c3c;
}

/* Bundle Deals */
.bundle-deals {
    padding: 100px 0;
    background: #fafafa;
}

.bundle-deals h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.bundle-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.bundle-images {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #fafafa;
}

.bundle-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
}

.bundle-content {
    padding: 30px;
}

.bundle-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.bundle-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.bundle-price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-weight: 400;
}

.bundle-price .bundle-sale-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.savings {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.add-bundle {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    padding: 15px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.add-bundle:hover {
    background: transparent;
    color: #1a1a1a;
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
    border: 1px solid #333;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    font-size: 16px;
    background: white;
    color: #1a1a1a;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 18px 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #333;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 0;
    transition: background 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: #666;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Styles */
.about-story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

.story-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-values {
    padding: 100px 0;
    background: #fafafa;
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 50px 30px;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.value-card i {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.team-section {
    padding: 100px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.team-member {
    text-align: center;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 0;
    margin-bottom: 25px;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.position {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.stats-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-info {
    padding: 100px 0;
    background: #fafafa;
    margin-top: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-card {
    background: white;
    padding: 50px 30px;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-card p {
    margin-bottom: 8px;
    color: #666;
    font-size: 16px;
}

.contact-note {
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-main {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form-section h2,
.contact-map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input {
    width: auto;
    margin-right: 15px;
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    padding: 18px 40px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: transparent;
    color: #1a1a1a;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.map-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.map-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.map-info i {
    color: #1a1a1a;
    margin-right: 15px;
    width: 20px;
}

.faq-section {
    padding: 100px 0;
    background: #fafafa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #f0f0f0;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.social-media-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.social-media-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.social-media-section p {
    margin-bottom: 60px;
    opacity: 0.8;
    font-size: 1.1rem;
}

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

.social-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 20px;
    border-radius: 0;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-card.facebook:hover {
    background: #1877f2;
}

.social-card.twitter:hover {
    background: #1da1f2;
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.linkedin:hover {
    background: #0077b5;
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.social-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .hero-content h1,
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p,
    .page-header p {
        font-size: 1rem;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .category-grid,
    .product-grid,
    .offers-grid,
    .codes-grid,
    .flash-grid,
    .bundle-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .bundle-images {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .categories,
    .featured-products,
    .special-offers,
    .products-section,
    .discount-codes,
    .flash-sales,
    .bundle-deals,
    .newsletter {
        padding: 60px 0;
    }
    
    .product-image,
    .category-image {
        height: 300px;
    }
    
    .flash-image {
        height: 250px;
    }
} 