/* ============================================
   CHRIST OR NOTHING - PROFESSIONAL BLACK THEME
   Scroll-Away Header & Clean Design
============================================ */

:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #888888;
    --border-color: #2A2A2A;
    --accent: #FFFFFF;
    --accent-hover: #DDDDDD;
    --card-bg: #111111;
    --modal-bg: #000000;
    --price-color: #FFFFFF;
    --shadow-color: rgba(0,0,0,0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER - SCROLL AWAY EFFECT
============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

header.header-hidden {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px 0;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area a {
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--accent);
    padding: 3px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: rotate(5deg);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand-name:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    list-style: none;
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.about-hyperlink {
    cursor: pointer;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background-color: var(--accent);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    position: relative;
    margin-top: 0;
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 25px auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* ============================================
   ABOUT MODAL
============================================ */
.about-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.about-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about-modal-content {
    background: var(--modal-bg);
    border: 1px solid var(--border-color);
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.about-close:hover {
    color: var(--text-primary);
}

.about-modal-body {
    padding: 40px;
}

.about-modal-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-divider {
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 25px;
}

.about-modal-body p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-quote {
    margin: 25px 0;
    padding: 20px;
    border-left: 3px solid var(--accent);
    background: var(--bg-secondary);
    font-style: italic;
}

/* ============================================
   SECTIONS
============================================ */
.section {
    margin: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100%;
}

/* ============================================
   PRODUCT GRID
============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bg-tertiary);
    overflow: hidden;
    padding: 20px;
}

.carousel-images {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0;
}

.product-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.product-info {
    padding: 24px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--price-color);
    margin: 10px 0;
}

.product-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 12px 0;
    white-space: pre-line;
    line-height: 1.6;
}

/* Color Options at Bottom */
.color-options {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    justify-content: center;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: var(--accent);
    transform: scale(1.1);
}

.color-swatch-white {
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
}

.color-swatch-camel {
    background: #C4A27A;
}

.color-swatch-black {
    background: #000000;
    border: 1px solid #FFFFFF;
}

/* Type Options (Standard/Oversized) */
.type-options {
    display: flex;
    gap: 12px;
    margin: 12px 0;
    justify-content: center;
}

.type-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-btn:hover, .type-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

/* ============================================
   PRODUCT DETAIL PAGE
============================================ */
.product-detail {
    margin: 100px 0 60px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-detail-images {
    background: var(--bg-secondary);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.product-detail-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-detail-main-image:hover {
    transform: scale(1.02);
}

.product-detail-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--price-color);
    margin-bottom: 20px;
}

.product-detail-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
    white-space: pre-line;
}

.add-to-cart-detail {
    background: var(--accent);
    color: var(--bg-primary);
    border: 1px solid var(--accent);
    padding: 14px 32px;
    width: 100%;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.add-to-cart-detail:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.back-to-shop {
    margin-top: 30px;
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent);
    transform: translateX(-5px);
}

/* Recommendations */
.recommendations-section {
    margin: 60px 0 100px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.recommendation-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
}

.recommendation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.recommendation-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 15px;
}

.recommendation-card h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.recommendation-card p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--price-color);
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-message {
    background: var(--card-bg);
    border-left: 2px solid var(--accent);
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-message p {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex: 1;
}

/* ============================================
   CART MODAL
============================================ */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.cart-modal.open {
    visibility: visible;
    opacity: 1;
}

.cart-content {
    background: var(--modal-bg);
    width: 90%;
    max-width: 550px;
    max-height: 80vh;
    padding: 32px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    overflow-y: auto;
    flex: 1;
    margin-bottom: 20px;
    min-height: 200px;
    max-height: 400px;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-details {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.remove-item {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 5px 12px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: all 0.2s;
}

.remove-item:hover {
    background: #ff4444;
    color: white;
    border-color: #ff4444;
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cart-total, .cart-total-amount {
    font-weight: 700;
    text-align: right;
    margin-bottom: 8px;
}

.cart-total-amount {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.whatsapp-btn, .clear-cart-btn {
    padding: 12px;
    width: 100%;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-btn {
    background: #25D366;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    transform: scale(1.02);
}

.clear-cart-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    margin-top: 12px;
}

.clear-cart-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 12px 24px;
    font-weight: 600;
    z-index: 1001;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 40px;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 8px 0;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 2.5rem; }
    .hero { padding: 100px 0 60px; }
    .navbar { flex-direction: column; align-items: stretch; }
    .nav-menu { justify-content: center; gap: 20px; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .brand-name { font-size: 1rem; }
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.4rem; }
    .products-grid { grid-template-columns: 1fr; }
}