/* Tech E Print - Style 3: MODERN E-COMMERCE - Bold Black & White */

@import url('auth-styles.css');

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* Top Bar - Black */
.top-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}

/* Main Header - White with Black Border */
.main-header {
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 2px solid #000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo img {
    height: 45px;
}

.nav-menu {
    flex: 1;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #666;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

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

/* Hero Section */
.hero-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid #000;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000;
}

.btn-primary {
    background-color: #000;
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: #fff;
    color: #000;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Quick Selection Blocks */
.quick-selection {
    padding: 50px 0;
    background-color: #fff;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.selection-btn {
    background-color: #fff;
    border: 2px solid #000;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.3s;
}

.selection-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.product-card {
    background-color: #fff;
    border: 2px solid #000;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 #000;
}

.product-image {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-bottom: 2px solid #000;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-info {
    padding: 20px;
}

.product-brand {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-price {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    background-color: #333;
}

/* USP Section */
.usp-section {
    padding: 50px 0;
    background-color: #fff;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.usp-item {
    text-align: center;
    padding: 30px 20px;
}

.usp-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.usp-icon-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 25px;
    border: 3px solid #333;
}

.usp-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Selection Cards with Images */
.selection-card {
    background-color: #fff;
    border: 2px solid #000;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.selection-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 #000;
}

.selection-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #000;
}

.selection-card h3 {
    padding: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.usp-item h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.usp-item p {
    font-size: 13px;
    color: #666;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background-color: #fff;
    border: 2px solid #000;
    padding: 25px;
}

.review-stars {
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

/* Newsletter */
.newsletter-section {
    padding: 50px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 2px solid #fff;
    width: 350px;
    font-size: 14px;
    font-weight: 600;
}

.newsletter-form button {
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
}

/* Footer - White with Black Border */
footer {
    background-color: #fff;
    color: #000;
    padding: 50px 0 20px;
    border-top: 3px solid #000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.footer-section a:hover {
    text-decoration: underline;
}

.office-address {
    margin-bottom: 15px;
    padding: 12px;
    border: 2px solid #000;
}

.office-address h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.office-address p {
    font-size: 12px;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 2px solid #000;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-menu ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        font-size: 11px;
    }
    
    /* Header Mobile */
    .main-header .container {
        gap: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    /* Hide Desktop Nav */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 2px solid #000;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    /* Header Actions Mobile */
    .header-actions {
        gap: 8px;
        order: 3;
    }
    
    .btn-auth {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .cart-icon span:first-child {
        font-size: 20px !important;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* USP and Reviews */
    .usp-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Selection Grid */
    .selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .btn-auth {
        padding: 6px 10px;
        font-size: 9px;
    }
}

/* Black Background Theme Override */
section {
    background: #000 !important;
    color: #fff !important;
}

.container {
    color: #fff;
}

.section-title h2,
.section-title p {
    color: #fff !important;
}

.product-card {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}

.product-card h3,
.product-card p,
.product-card .price {
    color: #fff !important;
}

.btn-primary {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

.btn-primary:hover {
    background: transparent !important;
    color: #fff !important;
}

.btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.btn-secondary:hover {
    background: #fff !important;
    color: #000 !important;
}

/* Footer Black Theme */
footer {
    background: #0a0a0a !important;
    color: #fff !important;
    border-top: 1px solid #333 !important;
}

footer h3,
footer h4,
footer p,
footer a {
    color: #fff !important;
}

footer a:hover {
    color: #ccc !important;
}

.office-address {
    background: #1a1a1a !important;
    border-left: 3px solid #fff !important;
}

.footer-bottom {
    border-top: 1px solid #333 !important;
    color: #999 !important;
}

.footer-bottom a {
    color: #fff !important;
}

/* Reviews Section */
.review-card {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}

.review-card p {
    color: #ccc !important;
}

.review-author {
    color: #fff !important;
}

/* USP Section */
.usp-card {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}

.usp-card h3,
.usp-card p {
    color: #fff !important;
}

/* Support Section */
.support-card {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}

.support-card h3 {
    color: #fff !important;
}

/* Newsletter */
.newsletter {
    background: #1a1a1a !important;
    border: 2px solid #333 !important;
}

.newsletter h2,
.newsletter p {
    color: #fff !important;
}

.newsletter input {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #444 !important;
}

.newsletter button {
    background: #fff !important;
    color: #000 !important;
}

.newsletter button:hover {
    background: #ccc !important;
}

/* Blog Cards */
.blog-card {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}

.blog-card h3,
.blog-card p {
    color: #fff !important;
}

/* Deals Section */
.deal-card {
    background: #1a1a1a !important;
    border: 2px solid #333 !important;
    color: #fff !important;
}

.deal-card h3,
.deal-card p {
    color: #fff !important;
}
