﻿:root {
    --primary-black: #1a1a1a;
    --secondary-gray: #f8f9fa;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--primary-black);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6, .brand-logo {
    font-family: 'Playfair Display', serif;
}

/* Buttons */
.btn-custom {
    background-color: var(--primary-black);
    color: white;
    border: 1px solid var(--primary-black);
    border-radius: 0;
    padding: 10px 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--primary-black);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-black);
    border: 1px solid var(--primary-black);
    border-radius: 0;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-outline-custom:hover {
    background-color: var(--primary-black);
    color: white;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--primary-black);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-icon-btn {
    color: var(--primary-black);
    font-size: 1.2rem;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-icon-btn:hover {
    color: #666;
}

/* Product Cards */
.product-card {
    border: none;
    transition: transform 0.3s ease;
    background: transparent;
}

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

.product-img-wrapper {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 0;
}

@media (min-width: 768px) {
    .hero-glass-card {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 992px) {
    .hero-glass-card {
        padding: 3rem;
    }
}

/* Hero responsive height */
@media (max-width: 767px) {
    .hero-section {
        height: 60vh;
    }
}

/* Footer */
footer {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ccc;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

/* Form Controls */
.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 10px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-black);
}

.form-select {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 10px;
}

.form-select:focus {
    box-shadow: none;
    border-color: var(--primary-black);
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #eee;
    z-index: 1040;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav-item {
    text-align: center;
    color: var(--primary-black);
    text-decoration: none;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-nav-item i {
    font-size: 1.2rem;
}

.mobile-nav-item.active {
    font-weight: 600;
}

body {
    padding-bottom: 70px;
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}

/* Product Detail */
.main-image {
    width: 100%;
    object-fit: cover;
    cursor: crosshair;
}

.thumb-img {
    cursor: pointer;
    border: 1px solid transparent;
    opacity: 0.6;
    transition: all 0.3s;
}

.thumb-img:hover,
.thumb-img.active {
    opacity: 1;
    border-color: var(--primary-black);
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ddd;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--primary-black);
    border-radius: 50%;
}

.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-selector .size-option {
    min-width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.size-selector .size-option:hover {
    border-color: var(--primary-black);
}

.size-selector .size-option input {
    display: none;
}

.size-selector .size-option:has(input:checked) {
    background-color: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
}

.size-selector .size-option.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-input {
    text-align: center;
    border: 1px solid var(--primary-black);
    border-radius: 0;
    width: 60px;
    height: 48px;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid #ddd;
}

.nav-tabs .nav-link {
    border: none;
    color: #888;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding-bottom: 15px;
}

.nav-tabs .nav-link.active {
    color: var(--primary-black);
    border-bottom: 2px solid var(--primary-black);
    font-weight: 600;
}

/* Cart */
.cart-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-black);
    padding-bottom: 15px;
}

.cart-table td {
    vertical-align: middle;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-product-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

.quantity-btn {
    width: 30px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #f5f5f5;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
}

.quantity-selector .qty-input {
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    border-radius: 0;
    width: 50px;
    height: 40px;
}

.quantity-selector .qty-btn {
    width: 30px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
}

.quantity-selector .qty-btn i {
    font-size: 0.8rem;
}

.cart-summary {
    background: rgba(248, 249, 250, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-total {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Checkout */
.checkout-step {
    margin-bottom: 30px;
    border: 1px solid #eee;
    padding: 25px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-summary-card {
    background: rgba(248, 249, 250, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.summary-product {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-product img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--primary-black);
    text-decoration: none;
}

/* Filters Sidebar */
.filters-sidebar {
    background: #fff;
    border-radius: 0;
    padding: 24px;
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 100px;
}

.filter-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 16px;
}

.filter-link {
    display: block;
    padding: 8px 14px;
    border-radius: 0;
    font-size: 0.9rem;
    color: #111827;
    text-decoration: none;
    transition: all 0.2s;
}

.filter-link:hover {
    background: #f3f4f6;
}

.filter-link.active {
    background: #111827;
    color: #fff;
    font-weight: 600;
}

.page-link {
    color: var(--primary-black);
    border-radius: 0;
}

.page-link:hover {
    background: var(--primary-black);
    color: #fff;
}

.page-item.active .page-link {
    background: var(--primary-black);
    border-color: var(--primary-black);
}

/* Account Sidebar */
.account-sidebar {
    background: var(--secondary-gray);
    padding: 30px;
    border-radius: 0;
    border: 1px solid #eee;
}

.account-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #333;
    border-radius: 0;
    margin-bottom: 5px;
    transition: all 0.2s;
    font-family: 'Jost', sans-serif;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: 0;
}

.account-nav .nav-link:hover,
.account-nav .nav-link.active {
    background: #fff;
    color: var(--primary-black);
}

.account-nav .nav-link.active {
    font-weight: 600;
}

/* Review Cards */
.review-card {
    border-radius: 0;
}

/* Auth Pages */
.auth-card {
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Loading Spinner */
.spinner-border {
    border-width: 0.15em;
}

/* Product Badges */
.badge-new {
    background: var(--primary-black);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.65rem;
    text-transform: uppercase;
}

.badge-sale {
    background: #dc3545;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.65rem;
    text-transform: uppercase;
}

/* Hide preloader and particles from default theme if still active */
.page-loader { display: none !important; }
#particles-js { display: none !important; }
.cursor-glow { display: none !important; }
.theme-toggle { display: none !important; }
.scroll-top { display: none !important; }
.announcement-bar { display: none !important; }
.cookie-consent { display: none !important; }

/* ===================== DEFAULT PRODUCT CARD ===================== */
.product-card.animate-on-scroll {
    border: none;
    transition: transform 0.3s ease;
    background: transparent;
    overflow: hidden;
}

.product-card.animate-on-scroll:hover {
    transform: translateY(-5px);
}

.product-card.animate-on-scroll .product-image {
    position: relative;
    overflow: hidden;
}

.product-card.animate-on-scroll .product-image img {
    width: 100%;
    transition: transform 0.5s ease;
    display: block;
}

.product-card.animate-on-scroll:hover .product-image img {
    transform: scale(1.05);
}

.product-card.animate-on-scroll .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.product-card.animate-on-scroll .badge-new,
.product-card.animate-on-scroll .badge-sale {
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card.animate-on-scroll .badge-new {
    background: var(--primary-black, #1a1a1a);
    color: #fff;
}

.product-card.animate-on-scroll .badge-sale {
    background: #c0392b;
    color: #fff;
}

.product-card.animate-on-scroll .product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.product-card.animate-on-scroll:hover .product-actions {
    transform: translateY(0);
}

.product-card.animate-on-scroll .btn-quick-view,
.product-card.animate-on-scroll .btn-wishlist {
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: var(--primary-black, #1a1a1a);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card.animate-on-scroll .btn-quick-view:hover,
.product-card.animate-on-scroll .btn-wishlist:hover {
    background: #000;
    opacity: 0.85;
}

.product-card.animate-on-scroll .btn-wishlist.active {
    background: #c0392b;
}

.product-card.animate-on-scroll .product-cart-overlay {
    display: none;
}

.product-card.animate-on-scroll .product-info {
    padding: 16px 0;
}

.product-card.animate-on-scroll .product-category {
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.product-card.animate-on-scroll .product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-black, #1a1a1a);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.product-card.animate-on-scroll .product-title a {
    color: inherit;
    text-decoration: none;
}

.product-card.animate-on-scroll .product-title a:hover {
    opacity: 0.7;
}

.product-card.animate-on-scroll .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-black, #1a1a1a);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card.animate-on-scroll .price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.product-card.animate-on-scroll .product-rating {
    font-size: 0.8rem;
    color: #999;
    margin-top: 6px;
}
