/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-y: auto; scrollbar-gutter: stable; scroll-padding-top: 180px; }
body { font-family: 'Titillium Web', 'Rajdhani', sans-serif; line-height: 1.6; color: #000; background-color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: fixed; width: 100%; top: 0; z-index: 1000; transition: all 0.3s ease; }
.header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header.header-solid { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.header.header-solid.scrolled { background: rgba(255,255,255,0.97); }
.nav { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.8rem 0 0.4rem; gap: 0.4rem; transition: all 0.3s ease; }
.logo { display: flex; align-items: center; flex-shrink: 0; transition: all 0.3s ease; }
.logo-image { height: 50px; width: auto; transition: all 0.3s ease; border-radius: 4px; }
.header.scrolled .nav { flex-direction: row; justify-content: space-between; align-items: center; padding: 0.5rem 0; gap: 0; }
.header.scrolled .logo-image { height: 40px; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a { text-decoration: none; color: #000; font-weight: 700; font-size: 1rem; letter-spacing: 1.5px; font-family: 'Oswald', 'Titillium Web', sans-serif; transition: color 0.3s ease; text-transform: uppercase; }
.nav-links a:hover { color: #555; }
.amazon-link { background: #000; color: #fff !important; padding: 0.5rem 1.1rem; border-radius: 6px; font-weight: 700; font-size: 0.9rem; font-family: 'Oswald', 'Titillium Web', sans-serif; transition: all 0.3s ease; border: 2px solid #000; box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-transform: uppercase; }
.amazon-link:hover { background: #333; color: #fff !important; border: 2px solid #333; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* Hamburger Menu */
.hamburger-menu { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger-menu span { display: block; width: 24px; height: 3px; background: #000; border-radius: 2px; transition: all 0.3s ease; }
.mobile-nav-dropdown { display: none; width: 100%; background: rgba(255,255,255,0.97); box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 999; padding: 0.5rem 0; }
.mobile-nav-dropdown a { display: block; padding: 0.75rem 1.5rem; text-decoration: none; color: #000; font-family: 'Oswald', 'Titillium Web', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; transition: background 0.2s ease; }
.mobile-nav-dropdown a:hover { background: rgba(0,0,0,0.05); color: #333; }
.mobile-nav-dropdown.open { display: flex; flex-direction: column; }

/* Hero Banner Section - Full viewport height */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0a1628;
}

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

.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Banner slide image - full cover */
.carousel-slide-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* Text gradient overlay for readability */
.banner-text-gradient {
    position: absolute;
    top: 0; left: 0;
    width: 55%;
    height: 100%;
    z-index: 7;
    pointer-events: none;
}

/* ===== THEME 1: Blue & Green ===== */
.banner-theme-blue-green .banner-text-gradient {
    background: linear-gradient(to right, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.8) 40%, rgba(10,22,40,0.3) 70%, transparent 100%);
}

.banner-theme-blue-green .hero-accent {
    color: #4ecca3;
    font-size: 4rem;
}

.banner-theme-blue-green .hero-title-highlight {
    background: rgba(78,204,163,0.2);
    border-left: 4px solid #4ecca3;
}

.banner-theme-blue-green .hero-tagline {
    color: rgba(180,230,210,0.7);
}

/* ===== THEME 2: Black & Gold ===== */
.banner-theme-black-gold .banner-text-gradient {
    background: linear-gradient(to right, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.85) 35%, rgba(10,10,10,0.35) 65%, transparent 100%);
}

.banner-theme-black-gold .hero-accent {
    color: #FFD700;
    font-size: 4rem;
}

.banner-theme-black-gold .hero-title-highlight {
    background: rgba(255,215,0,0.15);
    border-left: 4px solid #FFD700;
}

.banner-theme-black-gold .hero-tagline {
    color: rgba(255,235,170,0.65);
}

/* ===== THEME 3: White & Red ===== */
.banner-theme-white-red .banner-text-gradient {
    background: linear-gradient(to right, rgba(245,245,245,0.97) 0%, rgba(245,245,245,0.85) 35%, rgba(245,245,245,0.3) 65%, transparent 100%);
}

.banner-theme-white-red .hero-title {
    color: #1a1a1a;
    text-shadow: none;
}

.banner-theme-white-red .hero-accent {
    color: #c81e1e;
    font-size: 4rem;
}

.banner-theme-white-red .hero-title-highlight {
    color: #fff;
    background: rgba(200,30,30,0.85);
    border-left: 4px solid #c81e1e;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.banner-theme-white-red .hero-tagline {
    color: rgba(80,80,80,0.8);
    text-shadow: none;
}

/* Slide text content - positioned bottom-left */
.hero-slide-content {
    position: absolute;
    z-index: 10;
    color: #fff;
}

.hero-slide-left {
    bottom: 15%;
    left: 8%;
    max-width: 600px;
}

.hero-title {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-accent {
    font-size: 4rem;
}

.hero-title-highlight {
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    display: inline-block;
    padding: 0.1em 0.4em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: #FFD700;
    border-color: #FFD700;
    transform: scale(1.2);
}

/* Buttons */
.btn { display: inline-block; padding: 0.75rem 1.5rem; text-decoration: none; border-radius: 5px; font-weight: 600; transition: all 0.3s ease; cursor: pointer; }
.btn-primary { background: #f8f9fa; color: #000; font-family: 'Oswald', 'Titillium Web', sans-serif; font-weight: 700; border: 2px solid #e0e0e0; letter-spacing: 1px; text-transform: uppercase; }
.btn-primary:hover { background: #e0e0e0; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Featured Products Section */
.featured-products { padding: 70px 0 80px; background: #f8f9fa; }
.featured-products h2 { text-align: center; font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 2.5rem; margin-bottom: 0.5rem; color: #000; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.featured-subtitle { text-align: center; font-family: 'Titillium Web', sans-serif; font-size: 1.05rem; color: #888; margin-bottom: 2.5rem; font-weight: 400; letter-spacing: 0.5px; }
.featured-products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.featured-products-grid .product-card { background: #fff; border: 1px solid #eee; border-radius: 0; overflow: hidden; position: relative; transition: all 0.35s ease; box-shadow: none; display: flex; flex-direction: column; }
.featured-products-grid .product-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); transform: translateY(-6px); z-index: 2; border-color: transparent; }
.featured-products-grid .product-image { height: 220px; background: #f5f5f5; position: relative; overflow: hidden; }
.featured-products-grid .product-image img { transition: transform 0.5s ease; }
.featured-products-grid .product-card:hover .product-image img { transform: scale(1.08); }
.featured-products-grid .product-info { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.featured-products-grid .product-info h3 { font-size: 0.95rem; margin-bottom: 0.4rem; line-height: 1.3; white-space: normal; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.featured-products-grid .product-info p { font-size: 0.82rem; -webkit-line-clamp: 2; color: #777; flex: 1; }
.featured-products-grid .product-price-tag { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: #000; margin-top: 0.5rem; }
.featured-products-grid .product-view-btn { display: block; text-align: center; padding: 0.55rem; background: #000; color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: background 0.3s ease; margin-top: auto; }
.featured-products-grid .product-view-btn:hover { background: #333; }
.product-image-link { text-decoration: none; display: block; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 2rem; }
.pagination-btn { background: #f0f2f5; border: 1px solid #ddd; padding: 8px 16px; cursor: pointer; font-family: 'Titillium Web', sans-serif; font-size: 0.95rem; font-weight: 600; border-radius: 4px; transition: all 0.3s ease; }
.pagination-btn.active, .pagination-btn:hover { background: #000; color: #fff; border-color: #000; }

/* Why CONQUER Banner */
.why-conquer-banner { background: #1a1a1a; padding: 28px 0; border-top: 3px solid #FFD700; border-bottom: 3px solid #FFD700; }
.why-conquer-content { display: flex; align-items: center; justify-content: center; gap: 2.5rem; }
.why-item { display: flex; align-items: center; gap: 0.75rem; }
.why-icon { font-size: 1.6rem; flex-shrink: 0; }
.why-item h4 { font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600; color: #FFD700; letter-spacing: 1px; text-transform: uppercase; margin: 0; line-height: 1.2; }
.why-item p { font-family: 'Titillium Web', sans-serif; font-size: 0.8rem; color: #aaa; margin: 0; line-height: 1.3; }
.why-divider { width: 1px; height: 40px; background: rgba(255,215,0,0.3); }

/* Tool Categories Section */
.tool-categories { padding: 60px 0; background: #f0f2f5; }
.tool-categories h2 { text-align: center; font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 3rem; margin-bottom: 3rem; color: #000; font-weight: 700; letter-spacing: 3px; display: none; }
.tool-categories .categories-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; grid-template-rows: 260px 260px; gap: 0; }
.category-block { position: relative; display: block; overflow: hidden; text-decoration: none; transition: all 0.3s ease; border-radius: 0; }
.category-block:nth-child(1) { grid-column: 1; grid-row: 1; }
.category-block:nth-child(2) { grid-column: 2; grid-row: 1; }
.category-block:nth-child(3) { grid-column: 1; grid-row: 2; }
.category-block:nth-child(4) { grid-column: 2; grid-row: 2; }
.category-block:hover { z-index: 2; filter: brightness(1.1); }
.category-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.category-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center; padding: 1.5rem; transition: background 0.3s ease; }
.category-block:hover .category-overlay { background: rgba(0,0,0,0.55); }
.category-overlay h3 { color: #FFD700; font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; text-align: center; text-shadow: 2px 2px 6px rgba(0,0,0,0.5); margin: 0; }

/* Product Card */
.product-card { background: rgba(248,249,250,0.5); border-radius: 10px; overflow: hidden; box-shadow: none; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.08); }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.12); }
.product-image { height: 250px; background: #f8f9fa; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; }
.product-info { padding: 1rem 1.2rem; }
.product-info h3 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 1rem; margin-bottom: 0.3rem; color: #000; font-weight: 600; letter-spacing: 0.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-info p { font-family: 'Titillium Web', sans-serif; color: #666; margin-bottom: 0.5rem; line-height: 1.5; font-weight: 400; font-size: 0.85rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-link { display: inline-block; background: #f8f9fa; color: #000; padding: 0.7rem 1.2rem; text-decoration: none; border-radius: 6px; font-weight: 600; font-family: 'Titillium Web', sans-serif; transition: all 0.3s ease; border: 2px solid #e0e0e0; box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
.product-link:hover { background: #e0e0e0; border: 2px solid #d0d0d0; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.15); }

/* About Section */
.about { padding: 60px 0; background: #f8f9fa; color: #000; }
.about-content { max-width: 1100px; margin: 0 auto; text-align: center; }
.about h2 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 2.5rem; margin-bottom: 1rem; color: #000; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.about p { font-family: 'Titillium Web', sans-serif; font-size: 1.05rem; color: #666; margin-bottom: 2rem; line-height: 1.7; font-weight: 400; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature { text-align: center; padding: 1.5rem; }
.feature h4 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 1.3rem; margin-bottom: 0.5rem; color: #000; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.feature p { font-family: 'Titillium Web', sans-serif; color: #666; margin: 0; font-weight: 400; }
.about-text-image { display: block; margin-bottom: 2rem; }
.about-text h2 { text-align: center; margin-bottom: 1rem; }
.about-text p { text-align: center; font-family: 'Titillium Web', sans-serif; font-size: 1rem; line-height: 1.7; color: #555; max-width: 900px; margin: 0 auto; }
.about-image { display: none; }
.about .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.about .feature h3 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 1.2rem; margin-bottom: 0.5rem; color: #000; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.about .feature p { font-family: 'Titillium Web', sans-serif; color: #666; margin: 0; font-weight: 400; font-size: 0.95rem; line-height: 1.7; }

/* Footer */
.footer { background: #000; color: white; padding: 40px 0 20px; border-top: 3px solid #FFD700; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.5rem; }
.footer-section h4 { font-family: 'Oswald', 'Titillium Web', sans-serif; margin-bottom: 1rem; color: #FFD700; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; font-weight: 400; }
.footer-section ul li a { color: #fff; text-decoration: none; transition: color 0.3s ease; }
.footer-section ul li a:hover { color: #FFD700; }
.footer-bottom { border-top: 1px solid #FFD700; padding-top: 1rem; text-align: center; color: #fff; font-family: 'Titillium Web', sans-serif; }
.footer-amazon-links { display: flex; gap: 1.5rem; margin-top: 0.75rem; }
.amazon-placeholder, .qr-placeholder { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #fff; text-decoration: none; font-size: 0.85rem; font-family: 'Titillium Web', sans-serif; transition: color 0.3s ease; }
.amazon-placeholder:hover { color: #FFD700; }
.placeholder-icon { font-size: 2rem; }
.footer-contact p { font-family: 'Titillium Web', sans-serif; font-size: 0.9rem; margin-bottom: 0.4rem; color: #ccc; }
.footer-contact p span { color: #FFD700; font-weight: 600; }

/* Legacy styles */
.products { padding: 80px 0; background: #fff; }
.products h2 { text-align: center; font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 3rem; margin-bottom: 3rem; color: #000; font-weight: 700; letter-spacing: 3px; display: none; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.categories-grid { display: flex; flex-direction: column; gap: 6rem; }
.category-item { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 3rem 0; }
.category-item.reverse { grid-template-areas: "content image"; }
.category-item.reverse .category-content { grid-area: content; }
.category-item.reverse .category-image { grid-area: image; }
.category-image { overflow: hidden; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.category-image:hover { transform: scale(1.05); }
.category-image img { width: 100%; height: 300px; object-fit: cover; }
.category-content { padding: 2rem; }
.category-content h3 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 2.5rem; margin-bottom: 1rem; color: #000; font-weight: 700; letter-spacing: 1px; }
.category-content p { font-size: 1.2rem; color: #666; line-height: 1.8; }
.amazon-store { padding: 80px 0; background: #f8f9fa; text-align: center; }
.amazon-content h2 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 3rem; margin-bottom: 1.5rem; color: #000; font-weight: 700; letter-spacing: 3px; }
.amazon-content p { font-size: 1.3rem; margin-bottom: 2.5rem; color: #666; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-amazon-large { display: inline-block; background: #e0e0e0; color: #000; padding: 1.2rem 2.5rem; text-decoration: none; border-radius: 10px; font-weight: 700; font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 1.2rem; transition: all 0.3s ease; border: 3px solid #e0e0e0; box-shadow: 0 6px 20px rgba(0,0,0,0.1); letter-spacing: 1px; text-transform: uppercase; }
.btn-amazon-large:hover { background: #d0d0d0; border: 3px solid #d0d0d0; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-secondary { background: transparent; color: #f8f9fa; border: 2px solid #f8f9fa; font-family: 'Oswald', 'Titillium Web', sans-serif; font-weight: 700; letter-spacing: 1px; }
.btn-secondary:hover { background: #f8f9fa; color: #000; }
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .nav { flex-direction: row; justify-content: space-between; padding: 0.5rem 0 0.3rem; gap: 0.3rem; }
    .logo-image { height: 38px; }
    .header.scrolled .logo-image { height: 32px; }
    .nav-links { display: none; }
    .hamburger-menu { display: flex; }
    .hero { height: 70vh; min-height: 400px; }
    .hero-title { font-size: 2.2rem; }
    .hero-title-highlight { font-size: 2.2rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-slide-left { bottom: 18%; left: 5%; }
    .products-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .category-item { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .category-item.reverse { grid-template-areas: unset; }
    .category-item.reverse .category-content, .category-item.reverse .category-image { grid-area: unset; }
    .featured-products-grid { grid-template-columns: repeat(3, 1fr); }
    .featured-products-grid .product-card { max-width: 100%; }
    .tool-categories .categories-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .category-block:nth-child(1), .category-block:nth-child(2), .category-block:nth-child(3), .category-block:nth-child(4) { grid-column: 1; grid-row: auto; }
    .category-block img { height: 200px; }
    .category-overlay h3 { font-size: 1.5rem; }
    .about-text-image { display: block; }
    .about-text h2 { text-align: center; }
    .about-text p { text-align: center; }
    .footer .footer-content { grid-template-columns: 1fr; }
    .why-conquer-content { flex-wrap: wrap; gap: 1.5rem; }
    .why-divider { display: none; }
    .why-item { flex: 0 0 45%; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 1.8rem; }
    .hero-title-highlight { font-size: 1.8rem; }
    .hero-tagline { font-size: 0.9rem; }
    .products h2, .about h2, .amazon-content h2, .tool-categories h2 { font-size: 2rem; }
    .category-content h3 { font-size: 1.8rem; }
    .featured-products-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-products-grid .product-card { max-width: 100%; }
    .nav-links { gap: 0.5rem; }
    .nav-links a { font-size: 0.8rem; }
}

/* ===== Product Listing Page ===== */
.product-listing-page { padding-top: 160px; padding-bottom: 60px; min-height: 80vh; background: #fff; }
.product-listing-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
.category-panel { position: sticky; top: 100px; }
.category-panel-toggle { display: none; width: 100%; padding: 12px 16px; background: #000; color: #fff; border: none; font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: left; border-radius: 8px; align-items: center; justify-content: space-between; text-transform: uppercase; }
.category-panel-toggle .toggle-icon { transition: transform 0.3s ease; }
.category-panel-toggle.open .toggle-icon { transform: rotate(180deg); }
.category-panel-nav { display: flex; flex-direction: column; gap: 4px; background: #f8f9fa; border-radius: 10px; padding: 1rem; }
.category-panel-link { display: block; padding: 10px 16px; text-decoration: none; color: #333; font-family: 'Titillium Web', sans-serif; font-size: 0.95rem; font-weight: 600; border-radius: 6px; transition: all 0.2s ease; }
.category-panel-link:hover { background: #e0e0e0; color: #000; }
.category-panel-link.active { background: #000; color: #fff; font-weight: 700; }
.listing-category-title { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 2rem; font-weight: 700; color: #000; letter-spacing: 2px; margin-bottom: 2rem; margin-top: 0.5rem; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.product-grid .product-card { max-width: 100%; }
@media (max-width: 768px) {
    .product-listing-page { padding-top: 80px; }
    .product-listing-layout { grid-template-columns: 1fr; gap: 1rem; }
    .category-panel { position: relative; top: 0; }
    .category-panel-toggle { display: flex; }
    .category-panel-nav { display: none; margin-top: 8px; }
    .category-panel-nav.open { display: flex; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .listing-category-title { font-size: 1.5rem; }
}

/* ===== Product Description Page ===== */
.product-detail-page { padding-top: 160px; padding-bottom: 60px; min-height: 80vh; background: #fff; }
.breadcrumb { margin-bottom: 2rem; font-family: 'Titillium Web', sans-serif; font-size: 0.9rem; color: #666; }
.breadcrumb-link { color: #000; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.breadcrumb-link:hover { color: #666; text-decoration: underline; }
.breadcrumb-separator { color: #999; margin: 0 4px; }
.breadcrumb-current { color: #666; font-weight: 400; }
.product-not-found { text-align: center; padding: 4rem 2rem; }
.product-not-found p { font-size: 1.2rem; color: #666; margin-bottom: 2rem; }
.product-gallery-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 2px solid #f0f2f5; }
.product-gallery-section h2 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 1.5rem; font-weight: 600; color: #000; letter-spacing: 2px; margin-bottom: 1.5rem; text-transform: uppercase; }
.product-gallery { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.primary-image-container { width: 100%; max-width: 600px; margin: 0 auto; background: #f8f9fa; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.primary-image { width: 100%; height: 400px; object-fit: contain; }
.thumbnail-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.thumbnail { width: 80px; height: 80px; object-fit: contain; border: 2px solid #e0e0e0; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; background: #f8f9fa; }
.thumbnail:hover { border-color: #999; }
.thumbnail.active { border-color: #000; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.product-title-price { text-align: center; margin-top: 1.5rem; }
.product-title-price h1 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 2rem; font-weight: 700; color: #000; letter-spacing: 2px; margin-bottom: 0.5rem; text-transform: uppercase; }
.product-price { font-family: 'Titillium Web', sans-serif; font-size: 1.3rem; font-weight: 600; color: #333; }
.product-description-section { padding-top: 2rem; }
.product-description-section h2 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 1.5rem; font-weight: 600; color: #000; letter-spacing: 2px; margin-bottom: 1rem; text-transform: uppercase; }
.product-detail-description { font-family: 'Titillium Web', sans-serif; font-size: 1.05rem; line-height: 1.8; color: #555; margin-bottom: 2rem; }
.description-images-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.description-image-item { background: #f8f9fa; border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.description-image-item img { width: 100%; height: auto; object-fit: contain; display: block; }
@media (max-width: 768px) {
    .product-detail-page { padding-top: 80px; }
    .primary-image-container { min-height: 280px; }
    .primary-image { height: 280px; }
    .product-title-price h1 { font-size: 1.5rem; }
    .thumbnail { width: 60px; height: 60px; }
    .description-images-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .product-gallery-section h2, .product-description-section h2 { font-size: 1.2rem; }
    .product-title-price h1 { font-size: 1.3rem; }
    .product-price { font-size: 1.1rem; }
}

/* ===== Contact Page ===== */
.contact-page { padding-top: 160px; padding-bottom: 60px; min-height: 80vh; background: #fff; }
.contact-heading { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 2.5rem; font-weight: 700; color: #000; letter-spacing: 3px; text-align: center; margin-bottom: 3rem; text-transform: uppercase; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 1.5rem; font-weight: 600; color: #000; letter-spacing: 2px; margin-bottom: 2rem; text-transform: uppercase; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #f0f2f5; border-radius: 8px; }
.contact-info-item strong { font-family: 'Titillium Web', sans-serif; font-size: 0.85rem; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.contact-info-item p { font-family: 'Titillium Web', sans-serif; font-size: 1rem; color: #333; margin: 0; }
.contact-info-item a { color: #000; text-decoration: none; transition: color 0.3s ease; }
.contact-info-item a:hover { color: #666; }
.contact-form-wrapper { background: #f8f9fa; border-radius: 12px; padding: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: 'Titillium Web', sans-serif; font-size: 0.9rem; font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { font-family: 'Titillium Web', sans-serif; font-size: 0.95rem; padding: 10px 14px; border: 1px solid #ddd; border-radius: 6px; background: #fff; color: #333; transition: border-color 0.3s ease; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #000; }
.form-group textarea { resize: vertical; }
.validation-message { display: none; font-family: 'Titillium Web', sans-serif; font-size: 0.8rem; color: #d32f2f; margin-top: 2px; }
.contact-submit-btn { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 2px; padding: 12px 24px; background: #000; color: #fff; border: 2px solid #000; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; align-self: flex-start; text-transform: uppercase; }
.contact-submit-btn:hover { background: #333; border-color: #333; }
.contact-privacy-notice { font-family: 'Titillium Web', sans-serif; font-size: 0.82rem; color: #888; margin-top: 0.75rem; }
.contact-privacy-notice a { color: #000; text-decoration: underline; transition: color 0.3s; }
.contact-privacy-notice a:hover { color: #666; }
.contact-success-message { font-family: 'Titillium Web', sans-serif; font-size: 0.95rem; color: #2e7d32; background: #e8f5e9; padding: 12px 16px; border-radius: 6px; border: 1px solid #a5d6a7; margin-top: 0.5rem; }
@media (max-width: 768px) {
    .contact-page { padding-top: 80px; }
    .contact-heading { font-size: 2rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .contact-heading { font-size: 1.5rem; }
    .contact-form-wrapper { padding: 1.25rem; }
}

/* ===== Privacy Policy Page ===== */
.privacy-page { padding-top: 160px; padding-bottom: 60px; min-height: 80vh; background: #fff; }
.privacy-heading { font-family: 'Oswald', 'Titillium Web', sans-serif; font-size: 2.5rem; font-weight: 700; color: #000; letter-spacing: 3px; text-align: center; margin-bottom: 2rem; text-transform: uppercase; }
.privacy-updated { text-align: center; color: #999; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 0.9rem; font-style: italic; margin-top: 3rem; margin-bottom: 0; padding-top: 1.5rem; border-top: 1px solid #e0e0e0; }

/* Privacy Content Container */
.privacy-content { max-width: 860px; margin: 0 auto; }

/* Privacy Intro Paragraph */
.privacy-intro { background: #f8f9fa; border-left: 4px solid #000; padding: 1.5rem 2rem; margin-bottom: 2.5rem; border-radius: 0 8px 8px 0; }
.privacy-intro p { font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.05rem; line-height: 1.9; color: #333; margin-bottom: 0; }

/* Privacy Accordion */
.privacy-accordion { display: flex; flex-direction: column; gap: 0; }
.privacy-accordion-item { border: 1px solid #e0e0e0; border-bottom: none; background: #fff; }
.privacy-accordion-item:first-child { border-radius: 8px 8px 0 0; }
.privacy-accordion-item:last-child { border-bottom: 1px solid #e0e0e0; border-radius: 0 0 8px 8px; }
.privacy-accordion-item summary { font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1.1rem; font-weight: 700; text-transform: none; letter-spacing: 0; color: #000; padding: 1.1rem 1.5rem; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; transition: background 0.2s; }
.privacy-accordion-item summary::-webkit-details-marker { display: none; }
.privacy-accordion-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: #999; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.privacy-accordion-item[open] summary::after { content: '−'; }
.privacy-accordion-item summary:hover { background: #f8f9fa; }
.privacy-accordion-item[open] summary { background: #f8f9fa; border-bottom: 1px solid #e0e0e0; }
.privacy-accordion-body { padding: 1.25rem 1.5rem; }
.privacy-accordion-body p { font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1rem; line-height: 1.9; color: #444; margin-bottom: 1rem; }
.privacy-accordion-body p:last-child { margin-bottom: 0; }
.privacy-accordion-body ul, .privacy-accordion-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-accordion-body ul:last-child, .privacy-accordion-body ol:last-child { margin-bottom: 0; }
.privacy-accordion-body li { font-family: Georgia, 'Times New Roman', Times, serif; font-size: 1rem; line-height: 1.9; color: #444; margin-bottom: 0.4rem; }
.privacy-accordion-body a { color: #000; text-decoration: underline; transition: color 0.3s; }
.privacy-accordion-body a:hover { color: #666; }

/* Footer Bottom Links */
.footer-bottom-links { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.footer-bottom-links a { color: #fff; text-decoration: none; font-size: 0.85rem; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.3); padding: 0.3rem 1rem; border-radius: 20px; }
.footer-bottom-links a:hover { color: #FFD700; border-color: #FFD700; }
.footer-bottom-links .footer-separator { color: #555; }

/* Privacy Page Responsive Overrides */
@media (max-width: 768px) {
    .privacy-page { padding-top: 80px; }
    .privacy-heading { font-size: 2rem; }
    .privacy-content { max-width: 100%; }
    .privacy-intro { padding: 1.25rem 1.5rem; }
    .privacy-accordion-item summary { font-size: 1rem; padding: 1rem 1.25rem; }
    .privacy-accordion-body { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
    .privacy-heading { font-size: 1.5rem; }
    .privacy-intro { padding: 1rem 1.25rem; }
    .privacy-accordion-item summary { font-size: 0.9rem; letter-spacing: 1px; padding: 0.9rem 1rem; }
    .privacy-accordion-body { padding: 0.9rem 1rem; }
}
