/* ============================================
   CLEAN PROFESSIONAL CARPET STORE
   Larger Images with Clean Design
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   CLEAN HEADER
   ============================================ */

.header {
    background: #f8f9fa;
    color: #333;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.3rem;
    margin: 0;
    color: #6c757d;
    font-weight: 300;
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: #fff;
    border: 2px solid #dee2e6;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ============================================
   CLEAN NAVIGATION
   ============================================ */

.navbar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 1.25rem 2rem;
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    color: #2c3e50;
    background: #f8f9fa;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ============================================
   CLEAN HERO SECTION
   ============================================ */

.hero {
    text-align: center;
    padding: 5rem 0;
    background: #fff;
    color: #333;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #6c757d;
    font-weight: 300;
    line-height: 1.7;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    color: #2c3e50;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   PROFESSIONAL FILTER SECTION
   ============================================ */

.filter-section {
    padding: 2rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.active-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.item-count {
    color: #7f8c8d;
    font-weight: 400;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-controls label {
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
}

.sort-dropdown {
    padding: 0.5rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: white;
    color: #495057;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 160px;
}

.sort-dropdown:hover {
    border-color: #2c3e50;
}

.sort-dropdown:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

/* ============================================
   PRODUCTS GRID - SAME LAYOUT, LARGER IMAGES
   ============================================ */

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 0;
    background: #fff;
}

.products.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products.show {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ============================================
   PRODUCT CARDS - KEEPING EXACT SAME DESIGN
   ============================================ */

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================
   LARGER CARPET IMAGES - INCREASED SIZE
   ============================================ */

.product-image {
    position: relative;
    width: 100%;
    height: 380px; /* KEEPING THE LARGER SIZE */
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem; /* KEEPING INCREASED PADDING */
    overflow: hidden;
    border-bottom: 1px solid #e9ecef;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* ============================================
   CLEAN BADGES
   ============================================ */

.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc3545;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    letter-spacing: 0.5px;
}

.limited-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    letter-spacing: 0.5px;
}

/* ============================================
   PRODUCT INFO - KEEPING SAME LAYOUT
   ============================================ */

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex: 1;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.original-price {
    font-size: 1rem;
    color: #bdc3c7;
    text-decoration: line-through;
}

.savings {
    background: #28a745;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.contact-seller {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

.contact-seller:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}

/* ============================================
   CLEAN CONTACT SECTION
   ============================================ */

.contact {
    background: #f8f9fa;
    padding: 5rem 0;
    color: #333;
}

.contact-card {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.contact-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.email-button, .compose-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
    min-width: 200px;
}

.compose-button {
    background: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.email-button:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.4);
}

.compose-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.email-display {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    font-size: 1.1rem;
    color: #2c3e50;
}

.contact-note {
    margin-top: 1.5rem !important;
    font-size: 0.9rem !important;
    color: #6c757d !important;
    font-style: italic;
    opacity: 0.8;
}

/* ============================================
   CLEAN FOOTER
   ============================================ */

.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN - MAINTAINING LAYOUT
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .product-image {
        height: 340px; /* SLIGHTLY SMALLER ON TABLET */
        padding: 2rem;
    }
    
    .logo {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        border-top: 1px solid #e9ecef;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .header {
        padding: 2rem 0;
        text-align: center;
    }
    
    .header-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .active-filter {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .sort-controls {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    .sort-dropdown {
        width: 100%;
        min-width: auto;
        max-width: 250px;
    }
    
    .products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .product-image {
        height: 280px;
        padding: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .product-description {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .price-section {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 10px;
        white-space: normal;
        border-right: none;
        animation: fadeIn 1s ease-out;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 15px;
        text-align: center;
    }
    
    .trust-indicators {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo {
        font-size: 2rem;
        text-align: center;
    }
    
    .logo-container {
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .tagline {
        font-size: 1rem;
        text-align: center;
        padding: 0 15px;
        margin-top: 1rem;
        line-height: 1.4;
    }
    
    .contact-card {
        padding: 2rem 1rem;
        margin: 0 10px;
        text-align: center;
    }
    
    .contact-card h3 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .contact-card p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .email-button, .compose-button {
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
        min-width: 180px;
        white-space: nowrap;
    }
    
    .email-display {
        font-size: 1rem;
        padding: 0.8rem;
        word-break: break-all;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .header-content {
        padding: 0 5px;
    }
    
    .product-image {
        height: 250px;
        padding: 1rem;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .product-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 1.5rem 0.75rem;
        margin: 0 5px;
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .contact-card p {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 5px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero p {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    .trust-indicators {
        gap: 0.5rem;
        padding: 0 5px;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .logo-container {
        gap: 0.4rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .filter-controls {
        padding: 0 5px;
    }
    
    .sort-dropdown {
        max-width: 200px;
        font-size: 0.8rem;
    }
    
    .email-button, .compose-button {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
        min-width: 160px;
    }
    
    .email-display {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
}

/* ============================================
   COOL LOADING ANIMATIONS & TRANSITIONS
   ============================================ */

/* Fade In Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typewriter Effect */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    from, to {
        border-right-color: transparent;
    }
    50% {
        border-right-color: #2c3e50;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-down {
    animation: slideInDown 0.6s ease-out 0.3s both;
}

.typewriter-text {
    overflow: hidden;
    border-right: 3px solid #2c3e50;
    white-space: nowrap;
    margin: 0 auto;
    animation: 
        typewriter 2s steps(40, end),
        blinkCursor 0.8s infinite;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* Trust Badges Cool Hover Effect */
.trust-badge {
    transform: scale(0.95);
    animation: fadeIn 0.6s ease-out forwards;
}

.trust-badge:nth-child(1) { animation-delay: 1.2s; }
.trust-badge:nth-child(2) { animation-delay: 1.4s; }
.trust-badge:nth-child(3) { animation-delay: 1.6s; }

.trust-badge:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

/* Product Cards with Scroll Animation */
.product-card {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card.animate-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Logo Animation */
.logo-image {
    animation: fadeIn 0.8s ease-out;
}

/* Enhanced Loading Effects */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Trust Badge Animation */
.trust-indicators {
    perspective: 1000px;
}

.trust-badge:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

/* Smooth Page Load */
body {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.nav-link:focus,
.contact-seller:focus,
.email-button:focus {
    outline: 2px solid #2c3e50;
    outline-offset: 2px;
}

/* Loading state */
.products:empty::after {
    content: 'Loading premium carpets...';
    display: block;
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 3rem;
    font-size: 1.2rem;
    grid-column: 1 / -1;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 2rem;
    border: 1px solid #e9ecef;
}

/* ============================================
   CONTACT OPTIONS MODAL
   ============================================ */

.contact-options-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.contact-options-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.contact-options-content {
    background: white;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
}

.contact-options-modal.show .contact-options-content {
    transform: scale(1) translateY(0);
}

.contact-options-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
    border-radius: 12px 12px 0 0;
}

.contact-options-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-options-close {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0.25rem;
}

.contact-options-close:hover {
    color: #2c3e50;
}

.contact-options-body {
    padding: 2rem;
}

.contact-options-body p {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-options-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
    color: #495057;
}

.contact-option-btn:hover {
    transform: translateY(-1px);
    border-color: #2c3e50;
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}

.contact-option-btn:active {
    transform: translateY(0);
}

.mobile-email:hover {
    border-color: #28a745;
    color: #28a745;
}

.gmail-web:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.copy-details:hover {
    border-color: #2c3e50;
    color: #2c3e50;
}

/* Mobile responsiveness for contact modal */
@media (max-width: 768px) {
    .contact-options-content {
        width: 95%;
        margin: 1rem;
        max-width: 350px;
    }
    
    .contact-options-header {
        padding: 1.25rem 1.5rem;
    }
    
    .contact-options-header h3 {
        font-size: 1.125rem;
    }
    
    .contact-options-body {
        padding: 1.5rem;
    }
    
    .contact-option-btn {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-options-content {
        width: 95%;
        margin: 1rem;
        max-width: 320px;
    }
    
    .contact-options-header {
        padding: 1rem 1.25rem;
    }
    
    .contact-options-header h3 {
        font-size: 1rem;
    }
    
    .contact-options-body {
        padding: 1.25rem;
    }
    
    .contact-options-body p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-option-btn {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   IMAGE VIEWER MODAL
   ============================================ */

.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1004;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #dc3545;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    cursor: move;
    transform-origin: center center;
    position: relative;
    z-index: 1000;
}

.modal-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
    z-index: 1002;
}

.zoom-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 45px;
    position: relative;
    z-index: 1003;
}

.zoom-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Make product images clickable */
.product-image img {
    cursor: pointer;
}

.product-image img:hover {
    opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: scale(0.8) translateY(-50px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}