/* Camera Store - E-commerce Premium Styles */

:root {
    --primary-gold: #D4AF37;
    --deep-maroon: #800020;
    --rich-brown: #3E2723;
    --cream: #FFF8E7;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --shadow: rgba(0, 0, 0, 0.3);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #f0c952 100%);
    --whatsapp-green: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--rich-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: url('images/hero-cameras.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.7), rgba(52, 73, 94, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px var(--shadow);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px var(--shadow);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-cta {
    background: var(--primary-gold);
    color: var(--rich-brown);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.trust-badges {
    margin-top: 3rem;
}

.trust-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.brand-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.brand-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--rich-brown);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

/* Recommendation Section */
.recommendation-section {
    background: var(--cream);
}

.style-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.style-icon-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.style-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-gold);
}

.style-icon-card .icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.style-icon-card h3 {
    font-size: 1.4rem;
    color: var(--deep-maroon);
    margin-bottom: 10px;
}

.style-icon-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Products Section */
.products-section {
    background: white;
}

.products-layout {
    display: block;
}



/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f5f5f5;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.best-seller {
    background: #e74c3c;
    color: white;
}

.badge.rams-pick {
    background: var(--gold-gradient);
    color: var(--rich-brown);
}

.product-info {
    padding: 25px 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--deep-maroon);
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-specs {
    list-style: none;
    margin-bottom: 20px;
}

.product-specs li {
    padding: 6px 0;
    padding-left: 20px;
    color: #555;
    font-size: 0.9rem;
    position: relative;
}

.product-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.product-price {
    margin-bottom: 20px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-maroon);
    margin-right: 10px;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-button svg {
    width: 22px;
    height: 22px;
}

.whatsapp-button:hover {
    background: #1ea952;
    transform: translateY(-2px);
}

/* Used Gear Banner */
.used-gear-banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: white;
}

.banner-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.banner-button {
    display: inline-block;
    padding: 14px 35px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Why Buy Section */
.why-buy-section {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--deep-maroon);
    margin-bottom: 12px;
}

.why-card p {
    color: #555;
    line-height: 1.8;
}

.why-card strong {
    color: var(--deep-maroon);
}

/* Buying Guide Section */
.buying-guide-section {
    background: white;
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-maroon);
    margin-bottom: 30px;
    text-align: center;
}

.guide-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.guide-column {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 15px;
}

.guide-column h3 {
    font-size: 1.8rem;
    color: var(--deep-maroon);
    margin-bottom: 10px;
}

.guide-column p {
    color: #666;
    margin-bottom: 20px;
}

.guide-column ul {
    list-style: none;
}

.guide-column li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.guide-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.guide-column strong {
    color: var(--deep-maroon);
}

.rams-verdict {
    background: var(--gold-gradient);
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
}

.rams-verdict h3 {
    font-size: 1.6rem;
    color: var(--rich-brown);
    margin-bottom: 15px;
}

.rams-verdict p {
    font-size: 1.1rem;
    color: var(--rich-brown);
    line-height: 1.8;
}

.rams-verdict strong {
    font-weight: 700;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: linear-gradient(135deg, var(--deep-maroon), var(--rich-brown));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.gold-cta {
    background: var(--gold-gradient);
    color: var(--rich-brown);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.gold-cta svg {
    width: 28px;
    height: 28px;
}

.gold-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.cta-note {
    margin-top: 25px;
    font-size: 1.05rem;
    opacity: 0.9;
}

.cta-note a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 18px;
}

.footer-section h4 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.75;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-layout {
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .style-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-comparison {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .style-icons {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}