* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --primary-white: #ffffff;
    --accent-gray: #1a1a1a;
    --text-gray: #a0a0a0;
    --border-gray: #2a2a2a;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loading-logo {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 12px;
    color: var(--primary-white);
    animation: loadingPulse 2s ease-in-out infinite;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-black);
    color: var(--primary-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -2;
}

section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.75) 100%);
    z-index: -1;
}

#home::before {
    content: none;
}

#home::after {
    content: none;
}

#home {
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

#collections::before {
    background: var(--primary-black);
}

#about::before {
    background: var(--primary-black);
}

footer::before {
    background: var(--accent-gray);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

nav.hidden {
    transform: translateY(-100%);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-white);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 100px 30px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu ul li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu ul li a:hover {
    opacity: 0.7;
    padding-left: 10px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav ul li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-white);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-white);
    opacity: 0.7;
}

nav ul li a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 12px 28px;
    background: var(--primary-white);
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-black);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-black);
    color: var(--primary-white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--primary-white);
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-modal.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.close-cart {
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-cart:hover {
    transform: rotate(90deg);
    opacity: 0.7;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cart-item-size {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.qty-display {
    font-size: 14px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    margin-left: auto;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    color: var(--primary-white);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.cart-empty-icon {
    margin-bottom: 20px;
}

.cart-empty-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--text-gray);
    fill: none;
    stroke-width: 1.5;
    opacity: 0.3;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.cart-total-label {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-total-price {
    font-size: 24px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: var(--primary-black);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.modal.open {
    right: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    padding: 50px;
    height: 100%;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: var(--text-gray);
}

.checkout-modal {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.checkout-modal h2 {
    font-size: 28px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 900;
}

#checkoutForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    padding: 15px;
    font-size: 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.checkout-summary h3 {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
}

#checkoutItems {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-name {
    color: var(--primary-white);
    font-weight: 600;
}

.checkout-item-details {
    color: var(--text-gray);
    font-size: 12px;
}

.checkout-item-price {
    font-weight: 700;
    color: var(--primary-white);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
}

.submit-order-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.submit-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.submit-order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 40px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 90px;
    letter-spacing: 20px;
    margin-bottom: 25px;
    color: var(--primary-white);
    font-weight: 900;
}

.hero .tagline {
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-style: italic;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn {
    padding: 18px 45px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--primary-white);
    color: var(--primary-black);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-white);
    transform: translateY(-3px);
}

.apparel {
    padding: 120px 50px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 56px;
    letter-spacing: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--primary-white);
}

.section-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--text-gray);
    font-weight: 300;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-white);
    width: 30px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--primary-white);
    color: var(--primary-black);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-info {
    padding: 40px 35px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(30px);
}

.product-name {
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-white);
}

.product-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: var(--primary-white);
}

.product-sizes {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    justify-content: center;
}

.size-option {
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    background: transparent;
    color: var(--primary-white);
    border-radius: 10px;
}

.size-option:hover,
.size-option.active {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
    transform: translateY(-2px);
}

.order-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    transition: all 0.4s ease;
    border-radius: 50px;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.about {
    padding: 120px 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content {
    font-size: 18px;
    line-height: 2;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-content p {
    margin-bottom: 20px;
}

.contact-section {
    padding: 120px 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-container {
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 600px;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-info {
    padding: 70px 60px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.contact-info h3 {
    font-size: 32px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-detail-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.contact-detail-value {
    font-size: 16px;
    color: var(--primary-white);
    font-weight: 500;
}

.contact-form-wrapper {
    padding: 70px 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.contact-form .form-group label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
    margin-left: 5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--primary-white);
    padding: 22px 28px;
    font-size: 16px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-weight: 400;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 15px;
    font-weight: 300;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
}

.contact-submit-btn {
    width: 100%;
    padding: 22px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 60px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
    background: var(--primary-white);
}

.contact-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-white);
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 2.2;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-section a:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 12px;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 30px;
    color: var(--primary-white);
    opacity: 0.5;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    nav.scrolled {
        padding: 15px 20px;
    }

    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .cart-icon {
        padding: 10px 20px;
    }

    .cart-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: 8px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero .tagline {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        padding: 16px 35px;
        font-size: 12px;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-wrapper {
        height: 400px;
    }

    .apparel,
    .about {
        padding: 80px 20px;
    }

    section::before {
        background-attachment: scroll;
    }

    .cart-modal {
        max-width: 100%;
    }

    footer {
        padding: 60px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .product-name {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .product-price {
        font-size: 26px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    max-width: 350px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notification.show {
    right: 30px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

.notification.error .notification-icon svg {
    stroke: #ff4444;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.notification.success .notification-icon svg {
    stroke: #00ff88;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.notification.info .notification-icon svg {
    stroke: #4488ff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.notification-content {
    flex: 1;
    color: var(--primary-white);
}

.notification-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.notification-message {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 4px;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
}

@media (max-width: 768px) {
    .notification {
        max-width: calc(100% - 40px);
        right: -100%;
    }

    .notification.show {
        right: 20px;
    }
    
    .modal {
        max-width: 100%;
        width: 100%;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .checkout-modal .modal-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .checkout-modal h2 {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .form-group label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .checkout-summary {
        padding: 20px;
        margin-top: 5px;
    }
    
    .checkout-summary h3 {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .checkout-item {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .checkout-item-details {
        font-size: 11px;
    }
    
    .checkout-total {
        font-size: 16px;
        padding-top: 12px;
    }
    
    .submit-order-btn {
        padding: 16px;
        font-size: 12px;
        letter-spacing: 3px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-info {
        padding: 40px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: 25px;
    }
    
    .contact-info h3 {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .contact-section {
        padding: 80px 20px;
    }
}
