/* 
   ============================================
   CALAVERA APPAREL - Modern E-commerce Stylesheet
   ============================================
   Theme: Dark Mode, Minimalist, Premium
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   === ROOT VARIABLES ===
   ============================================ */
:root {
    --primary-color: #ff0000;
    --secondary-color: #d4af37;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-muted: #666666;
    --border-color: #333333;
    --success: #28a745;
    --danger: #ff4444;
    --warning: #ffc107;
    --info: #17a2b8;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.7);
}

/* ============================================
   === RESET & BASE ===
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }

/* ============================================
   === NAVBAR / HEADER ===
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand-logo {
    font-size: 1.5rem;
    color: var(--text-white);
}

.brand-logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons a {
    font-size: 1.1rem;
}

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

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.payment-secure-badge {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.payment-secure-badge i {
    color: var(--success);
    margin-right: 5px;
}

/* ============================================
   === BUTTONS ===
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--text-white);
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid var(--text-white);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    background: transparent;
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-success {
    background: var(--success) !important;
    border-color: var(--success) !important;
    color: white !important;
}

/* ============================================
   === HERO SECTION ===
   ============================================ */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.hero-content > p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-gray);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem !important;
    color: var(--text-gray);
    margin-bottom: 30px !important;
    letter-spacing: 1px !important;
    text-transform: none !important;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   === SECTIONS GENERAL ===
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    margin-top: 15px;
    color: var(--text-gray);
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
}

.section-tag {
    color: var(--primary-color);
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   === PRODUCT GRID & CARD ===
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-img {
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.1rem;
    margin: 5px 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 12px;
    transition: var(--transition);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-card:hover .quick-view {
    bottom: 0;
}

/* ============================================
   === CATEGORIES (Homepage) ===
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-item {
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-item:hover .category-overlay {
    background: rgba(0,0,0,0.7);
}

/* ============================================
   === PROMO BANNER ===
   ============================================ */
.promo-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=2000&auto=format&fit=crop') center/cover;
    padding: 100px 0;
    text-align: center;
}

.promo-tag {
    color: var(--primary-color);
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.promo-banner h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.promo-desc {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

/* ============================================
   === FEATURES SECTION ===
   ============================================ */
.features-section {
    background: #050505;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   === ABOUT SECTION ===
   ============================================ */
.about-section {
    padding: 80px 0;
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    border-radius: var(--border-radius);
    width: 100%;
}

/* ============================================
   === FOOTER ===
   ============================================ */
footer {
    background: #050505;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about .brand-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-links h4,
.newsletter h4 {
    margin-bottom: 20px;
    color: var(--text-white);
    font-size: 1rem;
}

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

.footer-links ul li a {
    color: var(--text-gray);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.contact-list li i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

.newsletter p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    color: white;
    border-radius: var(--border-radius);
}

.newsletter-form .btn {
    padding: 10px 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   === SHOP PAGE ===
   ============================================ */
.shop-banner {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=2000&auto=format&fit=crop') center/cover;
    text-align: center;
}

.shop-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.shop-banner p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 100px;
    margin-bottom: 20px;
}

.shop-banner + .container .breadcrumb,
.shop-banner ~ .container .breadcrumb {
    margin-top: 20px;
}

.breadcrumb a {
    color: var(--text-gray);
}

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

.breadcrumb i {
    font-size: 0.7rem;
}

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.filters {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.filters-header h3 {
    font-size: 1.1rem;
}

.reset-btn {
    background: transparent;
    color: var(--text-gray);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.reset-btn:hover {
    color: var(--primary-color);
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-group h4 {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-white);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-group label:hover {
    color: var(--text-white);
}

.size-filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.size-checkbox {
    margin: 0 !important;
    display: block !important;
}

.size-checkbox input {
    display: none;
}

.size-checkbox span {
    display: block;
    text-align: center;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.size-checkbox input:checked + span {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.filter-help {
    background: rgba(255, 0, 0, 0.05);
    border-left: 3px solid var(--primary-color);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.filter-help i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.filter-help h4 {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.filter-help p {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 12px;
    background: var(--bg-card);
    color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-bottom: 20px;
    font-family: inherit;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.shop-info h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.shop-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.sorting {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sorting label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.sorting select {
    padding: 8px 12px;
    background: var(--bg-card);
    color: white;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
}

.no-products i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.no-products h3 {
    margin-bottom: 10px;
}

.no-products p {
    color: var(--text-gray);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    color: white;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.page-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================
   === PRODUCT DETAIL PAGE ===
   ============================================ */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.product-gallery img {
    width: 100%;
    border-radius: var(--border-radius);
}

.product-info-detail h1 {
    font-size: 2.2rem;
    margin: 10px 0;
    text-transform: none;
    letter-spacing: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: var(--warning);
}

.rating-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-price-detail {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.option-group {
    margin-bottom: 25px;
}

.option-group h4 {
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.size-options,
.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn,
.color-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
    font-family: inherit;
}

.size-btn:hover,
.color-btn:hover {
    border-color: var(--text-white);
}

.size-btn.active,
.color-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--primary-color);
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-family: inherit;
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-cart {
    flex: 1;
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: white;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-wishlist:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-meta p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-meta i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 18px;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
    gap: 5px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    color: var(--text-gray);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--text-white);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-panel {
    display: none;
    padding: 20px 0;
    color: var(--text-gray);
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel h4 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tab-panel p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.product-features {
    margin-top: 20px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-gray);
}

.product-features i {
    color: var(--success);
    margin-right: 10px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.size-table th,
.size-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.size-table th {
    background: #1a1a1a;
    color: var(--text-white);
}

.size-table td {
    color: var(--text-gray);
}

.size-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.shipping-info {
    display: grid;
    gap: 20px;
}

.shipping-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    align-items: flex-start;
}

.shipping-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.shipping-item h5 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.no-related {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-gray);
    padding: 30px;
}

/* ============================================
   === CART PAGE ===
   ============================================ */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    background: #1a1a1a;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #1a1a1a;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #333;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 3px;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-color);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-remove:hover {
    color: #ff6666;
    transform: scale(1.1);
}

.cart-summary {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    width: 400px;
    margin-left: auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.summary-total {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-white);
}

/* ============================================
   === CHECKOUT PAGE ===
   ============================================ */
.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 120px;
    margin-bottom: 80px;
}

.checkout-form {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
}

.checkout-form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-form h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.payment-heading {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-methods {
    display: grid;
    gap: 12px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    padding: 15px 20px;
    background: #1a1a1a;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: #666;
}

.payment-card i:first-child {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.payment-info {
    flex: 1;
}

.payment-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    text-transform: none;
    letter-spacing: 0;
}

.payment-info p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.check-mark {
    opacity: 0;
    color: var(--primary-color) !important;
    font-size: 1.2rem !important;
    transition: opacity 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-color);
    background: rgba(255, 0, 0, 0.08);
}

.payment-option input[type="radio"]:checked + .payment-card .check-mark {
    opacity: 1;
}

.btn-pay {
    margin-top: 30px;
    padding: 15px;
}

.security-note {
    text-align: center;
    margin-top: 15px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.security-note i {
    color: var(--success);
    margin-right: 5px;
}

.order-summary-box {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-summary-box h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.checkout-items-list {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.checkout-item .item-name {
    flex: 1;
    padding-right: 10px;
}

.checkout-item .item-name strong {
    display: block;
    margin-bottom: 3px;
}

.checkout-item .item-qty {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.info-box {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
}

.info-box p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.info-box i {
    color: var(--primary-color);
    margin-right: 5px;
}

.empty-checkout,
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    margin-top: 120px;
}

.empty-checkout i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-checkout h3,
.empty-cart h3 {
    margin-bottom: 15px;
}

.empty-checkout p,
.empty-cart p {
    margin-bottom: 30px;
    color: var(--text-gray);
}

/* ============================================
   === PAYMENT PROCESSING PAGE ===
   ============================================ */
.payment-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
}

.payment-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 5px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.step.active .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    animation: pulse 1.5s infinite;
}

.step.completed .step-circle {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.step.active p,
.step.completed p {
    color: var(--text-white);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    max-width: 80px;
    margin-bottom: 30px;
}

.step-line.completed {
    background: var(--success);
}

.payment-process {
    text-align: center;
    background: var(--bg-card);
    padding: 50px 30px;
    border-radius: var(--border-radius);
}

.spinner-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.spinner {
    width: 120px;
    height: 120px;
    border: 5px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.payment-process h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.status-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1rem;
}

.progress-bar-container {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: var(--border-color);
    border-radius: 10px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.8s ease;
    border-radius: 10px;
}

.payment-info-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
}

.info-item p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.status-log {
    background: #050505;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
}

.log-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-gray);
    border-bottom: 1px solid #1a1a1a;
}

.log-item:last-child {
    border-bottom: none;
}

.log-item i {
    width: 16px;
}

.payment-footer {
    background: #050505;
    text-align: center;
    padding: 20px 0;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.payment-footer i {
    color: var(--success);
}

/* ============================================
   === SUCCESS PAGE ===
   ============================================ */
.success-section {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.success-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.success-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 25px;
    animation: pop 0.6s ease;
    box-shadow: 0 0 0 8px rgba(40, 167, 69, 0.2);
}

.success-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-message {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.confetti-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.confetti {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    transition: all 1s ease;
}

.confetti.animate {
    opacity: 1;
}

.confetti:nth-child(1) {
    left: -100px;
    animation: confetti-fall 2s ease-in forwards;
}

.confetti:nth-child(2) {
    left: 0;
    animation: confetti-fall 2.5s ease-in forwards;
}

.confetti:nth-child(3) {
    left: 100px;
    animation: confetti-fall 2.2s ease-in forwards;
}

.order-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.order-card-header h3 {
    font-size: 1.2rem;
}

.order-card-header h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.order-status {
    background: var(--success);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.info-block .info-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.info-block .info-value {
    color: var(--text-white);
    font-weight: 600;
}

.status-paid {
    color: var(--success) !important;
}

.shipping-detail,
.order-items {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.shipping-detail h4,
.order-items h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.shipping-detail h4 i,
.order-items h4 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.shipping-info-grid {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 5px;
}

.shipping-info-grid p {
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.shipping-info-grid strong {
    color: var(--text-white);
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-info {
    flex: 1;
}

.order-item-info h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
}

.order-item-info p {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.order-item-price {
    font-weight: 700;
    color: var(--primary-color);
}

.order-summary {
    padding-top: 10px;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

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

.step-card {
    background: var(--bg-card);
    padding: 25px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-support {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-support i {
    color: var(--primary-color);
    margin-right: 5px;
}

.contact-support strong {
    color: var(--text-white);
}

/* ============================================
   === LOADING & ERROR STATES ===
   ============================================ */
.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.loading-state i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.loading-state p {
    font-size: 1rem;
}

.error-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.error-state i {
    font-size: 3rem;
    color: var(--warning);
    margin-bottom: 15px;
}

/* ============================================
   === TOAST NOTIFICATION ===
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 350px;
    border-left: 4px solid var(--success);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast i {
    font-size: 1.3rem;
}

.toast-success {
    border-left-color: var(--success);
}

.toast-success i {
    color: var(--success);
}

.toast-error {
    border-left-color: var(--danger);
}

.toast-error i {
    color: var(--danger);
}

.toast-info {
    border-left-color: var(--info);
}

.toast-info i {
    color: var(--info);
}

.toast-warning {
    border-left-color: var(--warning);
}

.toast-warning i {
    color: var(--warning);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pop {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(300px) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   === PRINT STYLES (Untuk Cetak Bukti) ===
   ============================================ */
@media print {
    header, footer, .success-actions, .contact-support, 
    .progress-steps, .next-steps, .confetti-wrapper {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .order-card {
        background: white;
        color: black;
        border: 1px solid #ccc;
    }
    
    .order-card-header h3,
    .info-block .info-value,
    .shipping-detail h4,
    .order-items h4,
    .order-item-info h5 {
        color: black;
    }
}

/* ============================================
   === RESPONSIVE - TABLET ===
   ============================================ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shop-container {
        grid-template-columns: 1fr;
    }

    .filters {
        display: none;
        position: static;
    }

    .filters.show {
        display: block;
    }

    .mobile-filter-toggle {
        display: block;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-info-box {
        grid-template-columns: 1fr;
    }

    .checkout-container {
        grid-template-columns: 1fr;
    }

    .order-summary-box {
        position: static;
    }
}

/* ============================================
   === RESPONSIVE - MOBILE ===
   ============================================ */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content > p {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Product Detail */
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-info-detail h1 {
        font-size: 1.8rem;
    }

    .product-price-detail {
        font-size: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-wishlist {
        width: 100%;
        height: 45px;
    }

    .tabs-header {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .tab-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Cart */
    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        margin-bottom: 20px;
        padding: 15px;
        background: var(--bg-card);
        border-radius: var(--border-radius);
    }

    .cart-table td {
        padding: 8px 0;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-table td:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-summary {
        width: 100%;
        margin-left: 0;
    }

    /* Checkout */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Payment */
    .progress-steps {
        gap: 2px;
    }

    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .step p {
        font-size: 0.7rem;
    }

    .step-line {
        max-width: 30px;
    }

    .payment-process {
        padding: 30px 15px;
    }

    .payment-process h1 {
        font-size: 1.4rem;
    }

    .spinner-container {
        width: 90px;
        height: 90px;
    }

    .spinner {
        width: 90px;
        height: 90px;
    }

    .spinner-inner {
        font-size: 1.8rem;
    }

    /* Success */
    .success-header h1 {
        font-size: 1.5rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .order-card {
        padding: 20px;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .order-item {
        flex-wrap: wrap;
    }

    .order-item img {
        width: 60px;
        height: 60px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }

    /* Shop */
    .shop-banner h1 {
        font-size: 1.8rem;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sorting {
        width: 100%;
    }

    .sorting select {
        flex: 1;
    }

    /* Promo */
    .promo-banner h2 {
        font-size: 2rem;
    }

    .promo-desc {
        font-size: 1rem;
    }

    /* About */
    .about-content h2 {
        font-size: 1.8rem;
    }

    /* Toast */
    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

/* ============================================
   === RESPONSIVE - SMALL MOBILE ===
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .brand-logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .product-img {
        height: 280px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .size-filter {
        grid-template-columns: repeat(2, 1fr);
    }

    .step p {
        display: none;
    }

    .progress-steps {
        margin-bottom: 30px;
    }
}

/* ============================================
   === SCROLLBAR STYLING ===
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ============================================
   === SELECTION STYLING ===
   ============================================ */
::selection {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   === END OF STYLESHEET ===
   ============================================ */
