/* iOS Viewport Height Fix */
@supports (-webkit-touch-callout: none) {
    .hero {
        /* The trick for full viewport height on iOS */
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
}

/* Safe Area Insets for iPhone X and above */
@supports (padding: max(0px)) {
    body {
        --safe-area-inset-top: env(safe-area-inset-top, 0px);
        --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
        --safe-area-inset-left: env(safe-area-inset-left, 0px);
        --safe-area-inset-right: env(safe-area-inset-right, 0px);
    }
}


/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: invert(1);
    -webkit-backdrop-filter: invert(1);
    will-change: transform;
    mix-blend-mode: difference;
}

/* Hide default cursor */
html, body {
    cursor: none;
}

/* Ensure the cursor is visible on all interactive elements */
a, button, input, .btn, .nav-link, .nav-icon, .size-option, .quantity-btn, .thumbnail {
    cursor: none !important;
}

/* Base Styles */
:root {
    --primary-color: #000000;    /* Primary black */
    --secondary-color: #0a0a0a;   /* Slightly lighter black for backgrounds */
    --accent-color: #ffffff;     /* White for accents */
    --text-color: #f5f5f5;       /* Off-white text */
    --light-gray: #1a1a1a;       /* Dark gray for elements */
    --border-color: #333333;     /* Border color */
    --card-bg: #111111;          /* Card backgrounds */
    --input-bg: #1a1a1a;         /* Input fields */
    --transition: all 0.3s ease;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --hover-brightness: 1.2;     /* For hover effects */
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

@import url('https://fonts.cdnfonts.com/css/hellshunx');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: transparent;
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--accent-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    padding-top: calc(1.5rem + var(--safe-area-inset-top, 0px));
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-icon {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

.nav-icon:hover {
    opacity: 0.7;
}

.logo {
    font-size: 2.2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Hellshunx', 'Arial Black', sans-serif;
    font-weight: normal;
    text-transform: lowercase;
    letter-spacing: 1px;
    display: inline-block;
    line-height: 1;
    padding: 5px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo:hover {
    opacity: 0.8;
}

/* Style the first letter */
.logo .first-letter {
    text-transform: uppercase;
    display: inline-block;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-icon {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: opacity 0.3s ease;
    padding: 0.5rem;
}

.nav-icon:hover {
    opacity: 0.7;
}

/* Hellshunx Font */
h1 {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.hellshunx-font {
    font-family: 'Hellshunx', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

.hellshunx-font.lowercase {
    text-transform: lowercase;
    margin-left: -4px;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                      url('https://images.unsplash.com/photo-1513828583688-c52646db42da?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
    /* Disable parallax on mobile by default */
    transform: none !important;
    background-attachment: scroll;
}

/* Enable parallax only on larger screens */
@media (min-width: 769px) {
    .parallax-bg {
        transform: translateZ(0) !important;
        background-attachment: fixed;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Hellshunx', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 300;
    color: #ffffff;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
    
    .hero-image {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
    margin-top: 70px; /* Account for fixed navbar */
    z-index: 1;
    padding: 20px 0 30px;
    min-height: 50vh;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.7);
    height: 130%;
    width: 100%;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-top: -50px; /* Adjust this value as needed */
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 100;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

/* Product Section */
.product-section {
    padding: 20px 0 40px;
    background-color: #000000;
    margin-top: -30px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.product-images {
    position: relative;
}

.main-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--card-bg);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.thumbnail-images::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--card-bg);
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-details {
    padding: 20px 0;
    color: var(--text-color);
}

.product-category {
    display: inline-block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 100;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-color);
    letter-spacing: 1px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.4rem;
    margin-left: 10px;
    font-weight: 400;
}

.product-sizes {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.size-options {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.size-option {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    border-radius: 4px;
    padding: 0;
}

.size-option:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.size-option.active {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}
.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-option.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--secondary-color), 0 0 0 4px var(--primary-color);
}

#size-select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--input-bg);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    min-width: 100px;
    transition: var(--transition);
}

#size-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.3);
}

.product-quantity {
    margin: 25px 0;
}

.quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    width: 140px;
    margin-bottom: 5px;
}

.quantity-btn {
    width: 40px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}

.quantity-btn:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
}

.quantity-input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-to-cart {
    position: relative;
    width: 100%;
    height: 56px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 0 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-add-to-cart .btn-text {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-add-to-cart:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-add-to-cart:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-add-to-cart:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.btn-add-to-cart .loading-icon,
.btn-add-to-cart .success-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-add-to-cart .loading-icon {
    font-size: 1.2em;
    color: #000;
}

.btn-add-to-cart .success-icon {
    color: #28a745;
    font-size: 1.3em;
}

/* Loading state */
.btn-add-to-cart.loading .btn-text {
    transform: translateY(20px);
    opacity: 0;
}

.btn-add-to-cart.loading .loading-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Success state */
.btn-add-to-cart.success .loading-icon {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.btn-add-to-cart.success .success-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Added to cart message */
.added-to-cart-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.added-to-cart-message.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.added-to-cart-message::before {
    content: '✓';
    font-weight: bold;
}

/* Button hover and active states */
.btn-add-to-cart:not(.loading):not(.success):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-add-to-cart:not(.loading):not(.success):active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Disabled state */
.btn-add-to-cart:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

.product-description {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    line-height: 1.7;
}

.product-description h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-description p {
    margin-bottom: 15px;
    color: #555;
}

.product-description ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.product-description li {
    margin-bottom: 8px;
    color: #555;
}

.product-shipping {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 4px;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.shipping-info:last-child {
    margin-bottom: 0;
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.feature:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature p {
    color: #777;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #111;
    color: #aaa;
    padding: 80px 0 0;
}

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

.footer h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

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

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

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

.footer-newsletter p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: inherit;
    background-color: var(--input-bg);
    color: var(--text-color);
    transition: var(--transition);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.3);
}

.newsletter-form button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    font-size: 0.85rem;
}

.newsletter-form button:hover {
    background-color: #ff1a4f;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-images {
        position: static;
    }
    
    .product-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .product-price {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .size-options {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .product-title {
        font-size: 2rem;
        margin-top: 30px;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 1rem 0;
        transition: all 0.3s ease;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        z-index: 998;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 2rem;
        margin: 0;
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: background-color 0.2s ease;
    }
    
    .nav-link:active {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .nav-link::after {
        display: none; /* Hide underline on mobile */
    }
    
    /* Menu Toggle Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Nav Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: opacity, visibility;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0 1rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    order: 2;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    order: 1;
}

.payment-methods i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* iPhone 14 Pro Max specific adjustments */
@media only screen 
    and (device-width: 428px) 
    and (device-height: 926px) 
    and (-webkit-device-pixel-ratio: 3) {
    .footer {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }
    
    .footer .container {
        padding: 0 25px;
    }
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
    
    .footer-bottom p {
        order: 1;
        margin-bottom: 0;
    }
    
    .payment-methods {
        order: 2;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-colors, .product-sizes, .product-quantity {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 12px;
    }
}
