* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-dark: #2d3748;
    --text-light: #718096;
    --background: #ffffff;
    --background-light: #f7fafc;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image-large img,
.option-image img,
.mount-img,
.quality-showcase img,
.about-showcase img,
.category-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 1.5rem;
}

.logo h2 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.cart-count.show {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    margin-top: 80px;
    overflow: hidden;
}

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

.hero-image-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.3) 0%,
        rgba(118, 75, 162, 0.3) 50%,
        rgba(240, 147, 251, 0.2) 100%
    );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-large {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Popular Prices Section */
.popular-prices {
    background: white;
    padding: 1rem 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.popular-prices-container {
    max-width: 1400px;
    margin: 0 auto;
}

.popular-prices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.popular-prices-title h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.15rem;
}

.popular-prices-title .subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
}

.popular-prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.price-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-box-size {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.price-box-amount {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.loading-prices {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.see-full-pricing {
    text-align: right;
}

.pricing-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.pricing-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

.pricing-link svg {
    transition: transform 0.3s ease;
}

.pricing-link:hover svg {
    transform: translateX(4px);
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0 2.5rem;
    color: var(--text-dark);
}

.section-cta {
    text-align: center;
    margin: 2.5rem 0 3rem;
}

.btn-learn-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 2rem 6rem;
    margin-top: 80px;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
}

.about-section {
    background: white;
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-image {
    height: 400px;
}

.about-showcase {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.why-metal-section {
    background: var(--background-light);
    padding: 6rem 0;
}

.process-section {
    background: white;
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

.commitment-section {
    background: var(--background-light);
    padding: 6rem 0;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.commitment-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.commitment-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.commitment-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.commitment-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.commitment-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.nav-links .active {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero {
        padding: 6rem 2rem 4rem;
    }
}

/* Features Grid */
.unique-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Display Options */
.display-options {
    background: var(--background-light);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.options-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Mount Options Slider Section */
.mount-options-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mount-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 4rem;
}

.mount-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mount-slide {
    display: none !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.mount-slide.active {
    display: grid !important;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mount-slide-image {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

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

.mount-slide:hover .mount-slide-image img {
    transform: scale(1.05);
}

.mount-slide-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mount-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.mount-badge.tabletop {
    background: #10b981;
}

.mount-badge.eco {
    background: #059669;
}

.mount-slide-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mount-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mount-features-list {
    list-style: none;
    padding: 0;
}

.mount-features-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mount-features-list li:last-child {
    border-bottom: none;
}

.mount-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.mount-slider-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.mount-slider-nav.prev {
    left: 0;
}

.mount-slider-nav.next {
    right: 0;
}

.mount-slider-nav svg {
    width: 24px;
    height: 24px;
}

.mount-slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.mount-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mount-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.mount-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mount-slider-container {
        padding: 0 3rem;
    }
    
    .mount-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .mount-slide-image {
        height: 300px;
    }
    
    .mount-slide-content {
        padding: 2rem 1.5rem;
    }
    
    .mount-slide-content h3 {
        font-size: 1.5rem;
    }
    
    .mount-description {
        font-size: 1rem;
    }
    
    .mount-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .mount-slider-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .mount-slider-container {
        padding: 0 2.5rem;
    }
    
    .mount-slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .mount-slider-nav.prev {
        left: -5px;
    }
    
    .mount-slider-nav.next {
        right: -5px;
    }
}

.mount-slider-img.active {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.slider-nav svg {
    color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.mount-card-content {
    padding: 2rem;
}

.mount-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mount-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.mount-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.mount-badge.tabletop {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.mount-badge.eco {
    background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.mount-card-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.mount-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mount-card-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.mount-card-features .feature-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.mount-card-features .feature-item span {
    line-height: 1.5;
}

.option-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.option-card:hover {
    transform: translateY(-10px);
}

.option-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.option-image.wall-mount::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
}

.option-image.tabletop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
}

.option-image.premium-mount::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
}

.option-card h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.option-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Quality Section */
.quality-section {
    background: white;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quality-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.quality-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.quality-item p {
    color: var(--text-light);
}

.quality-image {
    height: 500px;
}

.quality-showcase {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Categories Section */
.categories-section {
    background: var(--background-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.categories-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 3px solid transparent;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.category-card.wall-display {
    border-color: transparent;
}

.category-card.wall-display:hover {
    border-color: #667eea;
}

.category-card.tabletop-display {
    border-color: transparent;
}

.category-card.tabletop-display:hover {
    border-color: #f093fb;
}

.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.category-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.category-image-new {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-image-new.wall-displays {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-image-new.tabletop-displays {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-icon {
    font-size: 6rem;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.category-image.small-frames {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.category-image.medium-frames {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.category-image.large-frames {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.category-info {
    padding: 2rem;
}

.category-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.category-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.category-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.category-features li {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.category-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.category-price {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.shop-now {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.category-card:hover .shop-now {
    transform: translateX(5px);
}

/* New Categories Design - Enhanced Card Layout */
.categories-new-grid {
    display: grid;
   grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.category-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.2);
    border-color: var(--primary-color);
}

.category-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card-modern:hover .category-card-overlay {
    opacity: 1;
}

.category-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: white;
}

.category-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-card-modern:hover .category-card-title {
    color: var(--primary-color);
}

.category-card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card-price::before {
    content: "💰";
    font-size: 1rem;
}

.category-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.category-card-modern:hover .category-card-link {
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(4px);
}

.category-card-link svg {
    transition: transform 0.3s ease;
}

.category-card-modern:hover .category-card-link svg {
    transform: translateX(4px);
}

/* Responsive Grid Breakpoints - Matching Requirements */

/* Desktop: 3-4 columns (default is 4) */
@media (max-width: 1400px) {
    .categories-new-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

/* Desktop to Large Tablet: 3 columns */
@media (max-width: 1200px) {
    .categories-new-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .category-card-image {
        height: 260px;
    }
}

/* Tablet: 2-3 columns (showing 3 columns) */
@media (max-width: 1024px) {
    .categories-new-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .category-card-image {
        height: 240px;
    }
    
    .category-card-body {
        padding: 1.5rem;
    }
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .categories-new-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-card-image {
        height: 220px;
    }
    
    .category-card-title {
        font-size: 1.4rem;
    }
}

/* Small Tablet: 2 columns */
@media (max-width: 768px) {
    .categories-new-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .category-card-image {
        height: 200px;
    }
    
    .category-card-body {
        padding: 1.25rem;
    }
    
    .category-card-title {
        font-size: 1.3rem;
    }
    
    .category-card-price {
        font-size: 1rem;
    }
}

/* Mobile: 1-2 columns (showing 2 columns on larger phones) */
@media (max-width: 640px) {
    .categories-new-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card-image {
        height: 180px;
    }
    
    .category-card-body {
        padding: 1rem;
    }
    
    .category-card-title {
        font-size: 1.15rem;
    }
    
    .category-card-price {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .category-card-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Small Mobile: 1 column */
@media (max-width: 480px) {
    .categories-new-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .category-card-image {
        height: 240px;
    }
    
    .category-card-body {
        padding: 1.5rem;
    }
    
    .category-card-title {
        font-size: 1.4rem;
    }
    
    .category-card-price {
        font-size: 1.05rem;
    }
    
    .category-card-link {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Promo Section */
.promo-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 2rem;
}

.promo-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promo-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.email-signup input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.btn-signup {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-signup:hover {
    transform: scale(1.05);
}

.promo-terms {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Testimonials */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid,
    .categories-grid,
    .categories-grid-two,
    .testimonials-grid,
    .mount-options-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-new-content {
        grid-template-columns: 1fr;
    }
    
    .category-new-text {
        padding: 2rem;
    }
    
    .category-new-title {
        font-size: 2rem;
    }
}
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid,
    .categories-grid,
    .categories-grid-two,
    .testimonials-grid,
    .mount-options-grid,
    .mount-options-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-new-content {
        grid-template-columns: 1fr;
    }
    
    .category-new-text {
        padding: 2.5rem;
    }
    
    .category-new-title {
        font-size: 2rem;
    }
    
    .category-new-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }
    
    .hero {
        padding: 40px 1rem;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .category-new-text {
        padding: 2rem 1.5rem;
    }
    
    .category-new-title {
        font-size: 1.75rem;
    }
    
    .category-new-description {
        font-size: 1rem;
    }
    
    .category-new-cta {
        font-size: 1.05rem;
    }
    
    .category-new-image {
        height: 250px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero,
.section-container {
    animation: fadeInUp 0.6s ease-out;
}

/* ================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ================================================ */

/* Mobile Navigation - Hamburger Menu */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        order: 1;
    }
    
    .cart-link {
        order: 3;
        position: relative;
        z-index: 1002;
        padding: 0.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        justify-content: flex-start;
    }
}

/* Mobile Typography - Fluid Sizing */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 500px;
        height: 70vh;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        gap: 1rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Section Container Mobile */
    .section-container {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Popular Prices Mobile */
    .popular-prices {
        padding: 1rem 1.5rem;
    }
    
    .popular-prices-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.5rem;
    }
    
    .price-box {
        padding: 0.6rem 0.4rem;
    }
    
    .price-box-size {
        font-size: 0.85rem;
    }
    
    .price-box-amount {
        font-size: 0.75rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Promo Section Mobile */
    .promo-section {
        padding: 3rem 1.5rem;
    }
    
    .promo-content h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .promo-content > p {
        font-size: 1.1rem;
    }
    
    .email-signup {
        flex-direction: column;
        max-width: 100%;
    }
    
    .email-signup input {
        width: 100%;
    }
    
    .btn-signup {
        width: 100%;
        padding: 1rem;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        padding: 3rem 1.5rem;
    }
    
    .cta-container h2 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .cta-container p {
        font-size: 1.1rem;
    }
    
    /* Quality Section Mobile */
    .quality-image {
        height: 300px;
    }
    
    .quality-content h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hero {
        min-height: 450px;
        margin-top: 60px;
    }
    
    .hero-content-wrapper {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .section-container {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .popular-prices {
        padding: 0.75rem 1rem;
    }
    
    .popular-prices-title h2 {
        font-size: 0.9rem;
    }
    
    .popular-prices-title .subtitle {
        font-size: 0.65rem;
    }
    
    .pricing-link {
        font-size: 0.95rem;
    }
    
    .promo-content h2 {
        font-size: 1.75rem;
    }
    
    .promo-content > p {
        font-size: 1rem;
    }
    
    .cta-container h2 {
        font-size: 1.75rem;
    }
    
    .footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Prevent Horizontal Scroll */
body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Touch-Friendly Buttons */
button,
a.btn-primary-large,
a.btn-secondary-large,
a.btn-learn-more,
.btn-signup {
    min-height: 44px;
    min-width: 44px;
}

/* Landscape Mobile Orientation */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
