/* Ultra-Clean Minimal Design - Matching Provided Layouts */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gray: #f8f8f8;
    --text-gray: #666666;
    --border-gray: #e8e8e8;
    --transition-smooth: 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.5;
    color: var(--primary-black);
    background-color: #191a1c;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    display: none !important;
}

.loading-content {
    text-align: center;
    color: var(--primary-white);
}

.loading-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.loading-logo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-width: 200px;
    margin: 0 auto;
    border-radius: 8px;
    padding: 1rem;
    object-fit: contain;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--primary-white);
    width: 0;
    animation: loadingProgress 2s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all var(--transition-smooth);
    height: 60px;
}

header.scrolled {
    background: rgba(160, 160, 160, 0.95);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

@media (min-width: 769px) {
    header.scrolled {
        backdrop-filter: blur(15px);
        background: rgba(160, 160, 160, 0.75);
    }
}

.navbar {
    padding: 0.75rem 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    flex: 0 0 auto;
    position: absolute;
    left: 0;
}

.logo {
    height: 36px;
    width: auto;
    border-radius: 4px;
    padding: 4px;
    filter: brightness(0) invert(1);
    transition: all var(--transition-smooth);
}

header.scrolled .logo {
    filter: brightness(1) invert(0);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
}

header.scrolled .brand-name {
    color: var(--primary-black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    background-color: transparent !important;
}

.nav-menu a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-smooth);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: rgba(255,255,255,0.7);
}

header.scrolled .nav-menu a {
    color: var(--primary-black);
}

header.scrolled .nav-menu a:hover {
    color: var(--text-gray);
}

.header-actions {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-btn,
.cart-btn {
    background: transparent !important;
    color: var(--primary-white) !important;
    padding: 0.7rem;
    border: none;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 45px;
    height: 45px;
    position: relative;
}

.search-btn {
    overflow: hidden;
}

.cart-btn {
    overflow: visible;
}

.search-btn {
    font-size: 1rem;
}

.cart-btn {
    font-size: 1.1rem;
}

.search-btn i,
.cart-btn i {
    color: var(--primary-white);
    transition: all var(--transition-smooth);
}

header.scrolled .search-btn,
header.scrolled .cart-btn {
    background: transparent !important;
    color: var(--primary-black) !important;
}

header.scrolled .search-btn i,
header.scrolled .cart-btn i {
    color: var(--primary-black);
}

.search-btn:hover,
.cart-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--primary-white) !important;
    transform: translateY(-2px);
}

.search-btn:hover i,
.cart-btn:hover i {
    color: var(--primary-white) !important;
}

header.scrolled .search-btn:hover,
header.scrolled .cart-btn:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    color: var(--primary-black) !important;
}

header.scrolled .search-btn:hover i,
header.scrolled .cart-btn:hover i {
    color: var(--primary-black) !important;
}

.search-btn:active,
.cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#cart-count {
    background: #ff4444;
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 900;
    width: 18px;
    height: 18px;
    text-align: center;
    transition: all var(--transition-smooth);
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid var(--primary-white);
}

header.scrolled #cart-count {
    background: #ff4444;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.cart-btn:hover #cart-count {
    background: #ff4444;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

header.scrolled .cart-btn:hover #cart-count {
    background: #ff4444;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-white);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

header.scrolled .hamburger span {
    background: var(--primary-black);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 40vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out, opacity 0.4s ease-in-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.carousel-slide.next {
    transform: translateX(100%);
    opacity: 0;
}

.hero-bg-1 {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/122-1600x800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-2 {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/248-1600x800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-3 {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/456-1600x800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--primary-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    opacity: 0.8;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.indicator.active {
    background: var(--primary-white);
    transform: scale(1.2);
}

/* Hero Section - Full Screen Bold */
.hero {
    height: calc(40vh - 60px);
    margin-top: 60px;
    display: flex;
    align-items: center;
    background: var(--primary-black);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-text {
    animation: slideInLeft 1s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-line {
    display: block;
}

.hero-line-accent {
    display: block;
    color: var(--accent-gray);
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.5;
    max-width: 400px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.875rem 1.75rem;
    border: 3px solid #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: #ffffff;
    color: var(--primary-black);
    opacity: 0.8;
}

.cta-btn.primary:hover {
    background: var(--primary-black);
    color: #ffffff;
    opacity: 1;
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    opacity: 0.8;
}

.cta-btn.secondary:hover {
    background: #ffffff;
    color: var(--primary-black);
    opacity: 1;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-placeholder {
    width: 100%;
    height: 40vh;
    background: url('../images/hero_seat.jpg') top/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: var(--primary-white);
    text-align: center;
    border: 4px solid var(--primary-white);
    position: relative;
    padding: 0;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    right: -2px;
    height: 35%;
    background: rgba(0,0,0,0.85);
    pointer-events: none;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    opacity: 1;
}

.hero-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.placeholder-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.placeholder-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Promo Banner */
.promo-banner {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 0.3rem 0;
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Show only desktop text by default */
.promo-text .mobile-text {
    display: none;
}

.promo-text .desktop-text {
    display: block;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hide CTA button on desktop */
.desktop-hidden {
    display: none;
}

.promo-btn {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.promo-btn:hover {
    background: var(--accent-gray);
}

/* Feature Images Section */
.feature-images {
    padding: 2rem 0 2rem 0;
    background: rgb(25, 26, 28);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    transition: transform var(--transition-smooth);
    text-decoration: none;
    display: block;
}

.feature-card:hover {
    transform: translateY(-10px);
    text-decoration: none;
}

.feature-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 40%, transparent 70%);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 1.5rem;
}

.feature-text {
    color: var(--primary-white);
    flex: 1;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.feature-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--primary-white);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}

.feature-arrow {
    display: none;
}

.feature-card:hover .feature-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -3px;
    color: var(--primary-white);
    text-transform: uppercase;
    line-height: 0.9;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Products Section - Fixed Spacing */
.products {
    background: rgb(25, 26, 28);
    padding: 3rem 0 8rem 0;
    margin-top: 0;
    clear: both;
}

/* Hide product ratings on home page */
.products .product-rating {
    display: none;
}

/* Scroll buttons hidden for grid layout */
.products-scroll-container {
    position: relative;
}

.products-scroll-btn {
    display: none;
}

.products .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-scroll-container {
    position: relative;
}

.product-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Horizontal scrollbar styling for product grid */
.product-grid::-webkit-scrollbar {
    height: 8px;
}

.product-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.product-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.product-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

/* HOME PAGE PRODUCT CARD OVERRIDES - Prevent interference from product page CSS */
.products:not(.related-products) .product-card {
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    min-width: 320px;
    height: 280px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    outline: none;
    flex-shrink: 0;
}

.products:not(.related-products) .product-btn.sold-out {
    background: #6c757d !important;
    color: #ffffff !important;
    border: none !important;
    opacity: 0.8 !important;
    cursor: not-allowed !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.products:not(.related-products) .product-name {
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.products:not(.related-products) .product-price {
    color: #22c55e !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.products:not(.related-products) .product-description {
    color: rgba(255,255,255,0.95) !important;
}

/* Additional styles for smaller product cards with bottom-left buttons */
.products .product-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    gap: .75rem;
}

.products .product-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.15rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.products .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.15rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.products .product-description {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.2;
    margin: 0.1rem 0 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.products .product-btn {
    width: auto;
    max-width: 140px;
    padding: 0.6rem 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
}

.products .product-btn.add-to-cart {
    background: var(--primary-black);
    color: var(--primary-white);
}

.products .product-btn.add-to-cart:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    max-width: 150px;
    height: auto;
    filter: invert(1);
}

.footer-section h3 {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-white);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    text-transform: none;
    letter-spacing: 0;
}

.social-links a:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 1rem;
    border: 2px solid var(--primary-white);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--primary-white);
    font-size: 1rem;
    font-weight: 600;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form input:focus {
    outline: none;
    background: var(--primary-white);
    color: var(--primary-black);
}

.newsletter-form button {
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom i {
    color: var(--primary-white);
    margin: 0 0.25rem;
}

/* Product Page Styles - Nike Style */
.product-page {
    background: #111111;
    color: var(--primary-white);
    padding: 1rem 0;
    padding-top: 55px; /* Reduced top padding to minimize space below nav */
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Product Content Layout */
.product-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
}

/* Product Main Section Layout */
.product-main-section {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 3rem;
    margin-bottom: 1rem;
}

/* Product Gallery Section */
.product-gallery-section {
    display: flex;
    gap: 1.5rem;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100px;
    flex-shrink: 0;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-smooth);
    opacity: 0.6;
}

.thumbnail-item.active {
    border-color: var(--primary-white);
    opacity: 1;
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

.product-main-image {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Make it square */
    max-width: 600px; /* Limit max size */
    width: 600px; /* Fixed width to ensure square */
    height: 600px; /* Fixed height to ensure square */
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-main-image .product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary-white);
    color: #111111;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Product Details Section */
.product-details-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.product-info-header .product-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: left;
    margin-top: 0;
}

.product-category {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: left;
}

.product-pricing {
    margin-bottom: 2rem;
    text-align: left;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    font-family: var(--font-display);
}

.original-price {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
    margin-left: 1rem;
}

/* Product Description Section */
.product-description-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.product-description-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.product-features-list h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.product-features-list ul {
    list-style: none;
    padding: 0;
}

.product-features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
    line-height: 1.6;
}

.product-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-white);
    font-weight: 900;
}

/* Product Actions Section */
.product-actions-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-white);
    font-size: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 30px;
    overflow: hidden;
    width: fit-content;
    background: #1a1a1a;
}

.quantity-btn {
    background: transparent;
    color: var(--primary-white);
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

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

.quantity-controls input {
    border: none;
    padding: 0.75rem;
    width: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary-white);
}

.quantity-controls input:focus {
    outline: none;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.add-to-bag-btn {
    background: var(--primary-white);
    color: #111111;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all var(--transition-smooth);
    width: 100%;
}

.add-to-bag-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.favorite-btn {
    background: transparent;
    color: var(--primary-white);
    border: 1px solid #333;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.favorite-btn:hover {
    border-color: var(--primary-white);
    background: rgba(255,255,255,0.1);
}

/* Product Guarantee Section */
.product-guarantee-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
}

.guarantee-item i {
    color: var(--primary-white);
    font-size: 1.1rem;
    width: 20px;
}

.guarantee-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Product Summary */
.product-summary {
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
    align-self: flex-start;
}

.product-summary h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.product-summary p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 1rem;
    text-align: left;
}

.product-note {
    font-size: 0.85rem !important;
    color: #888 !important;
    font-style: italic;
}

/* Expandable Description */
.product-description-expandable {
    margin-bottom: 2.5rem;
    text-align: left;
    width: 100%;
    align-self: flex-start;
}

.description-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.description-content.expanded {
    max-height: 1000px;
}

.description-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 1.2rem;
    text-align: left;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    width: 100%;
    align-self: flex-start;
}

.buy-now-btn,
.learn-more-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    border-radius: 0;
}

.buy-now-btn {
    background: #f5f5f5;
    color: #111111;
}

.buy-now-btn:hover {
    background: #e0e0e0;
}

.learn-more-btn {
    background: transparent;
    color: var(--primary-white);
    border: 1px solid #333;
}

.learn-more-btn:hover {
    border-color: var(--primary-white);
}

/* Second Section: 2 Columns Feature */
.product-feature-dual {
    background: #111111;
    padding: 2rem 0;
    margin-top: 0;
}

.feature-dual-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-text-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.feature-text-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 500px;
}

.feature-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border-radius: 30px;
}

.feature-btn.primary {
    background: var(--primary-white);
    color: #111111;
}

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

.feature-btn.secondary {
    background: transparent;
    color: var(--primary-white);
}

.feature-btn.secondary:hover {
    background: var(--primary-white);
    color: #111111;
}

.feature-image-section {
    position: relative;
}

.feature-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

/* Third Section: 1 Column Full Width */
.product-showcase-full {
    background: #111111;
    padding: 1.5rem 2rem; /* Add padding instead of edge-to-edge */
}

.showcase-image {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 12px; /* Add rounded corners */
    max-width: 1400px;
    margin: 0 auto;
}

.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fourth Section: 3 Columns Highlights */
.product-highlights {
    background: #111111;
    padding: 2rem 0;
}

.highlights-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlights-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.highlight-item {
    text-align: left;
}

.highlight-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-item h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.highlight-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
}

/* Highlights Pagination */
.highlights-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: background var(--transition-smooth);
}

.dot.active {
    background: var(--primary-white);
}

/* Feature Dual Section */
.product-feature-dual {
    background: #111111;
    padding: 2rem 0;
}

.feature-dual-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.feature-text-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 2rem;
}

.feature-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.feature-btn.secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.feature-image-section {
    position: relative;
}

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Full Width Showcase */
.product-showcase-full {
    margin: 4rem 0;
}

.showcase-image {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Highlights */
.product-highlights {
    padding: 4rem 0;
    background: #111111;
}

.highlights-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlights-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.highlight-item {
    text-align: center;
}

.highlight-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.highlight-item p {
    line-height: 1.6;
    color: #ccc;
}

.highlights-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-white);
}

/* Related Products - Home Page Style */
.related-products-section {
    background: #111111;
    padding: 1.5rem 0;
}

.related-products-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.related-products-section .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1px;
}

.related-products-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Horizontal scrollbar styling for related products grid */
.related-products-grid::-webkit-scrollbar {
    height: 8px;
}

.related-products-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.related-products-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.related-products-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* RELATED PRODUCTS CARD STYLE - Matching home page */
.related-products-section .product-card {
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    min-width: 320px;
    height: 280px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    outline: none;
    flex-shrink: 0;
}

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

.related-products-section .product-image {
    display: none; /* Hide the image element since we're using background images */
}

.related-products-section .product-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    gap: .75rem;
}

.related-products-section .product-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.15rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.related-products-section .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.15rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.related-products-section .product-description {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.2;
    margin: 0.1rem 0 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.related-products-section .product-btn {
    width: auto;
    max-width: 140px;
    padding: 0.6rem 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
    background: var(--primary-white);
    color: var(--primary-black);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.related-products-section .product-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.related-products-section .product-btn.add-to-cart {
    background: #22c55e;
    color: var(--primary-white);
}

.related-products-section .product-btn.add-to-cart:hover {
    background: #16a34a;
}

.related-products-section .product-btn.sold-out {
    background: #6c757d !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.8 !important;
}

.related-products-section .product-info {
    display: none; /* Hide the old info structure */
}

.related-products-section .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.related-products-section .product-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.related-products-section .product-top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.related-products-section .product-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.related-products-section .product-badge {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-products-section .price-container {
    margin-top: auto;
}

.related-products-section .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-white);
}

.related-products-section .original-price {
    color: #666;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Cart Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--primary-white);
    margin: 3% auto;
    padding: 0;
    border: 2px solid var(--primary-black);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Cart Slide Panel Styles */
#cart-modal {
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
}

#cart-modal .modal-content {
    position: fixed;
    top: 0;
    right: -40%;
    width: 40%;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
    border: none;
    border-left: 4px solid var(--primary-black);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

#cart-modal.show .modal-content {
    right: 0;
}

#cart-modal .modal-header {
    border-radius: 0;
    position: relative;
}

#cart-modal .close {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    right: auto;
    transform: translateY(-50%);
    order: -1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: var(--primary-black);
    color: var(--primary-white);
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding-left: 30px;
    padding-top: 3px;
}

.close {
    color: var(--primary-white);
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-smooth);
    padding: 0.3rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.close:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.cart-items {
    padding: 1.5rem 2rem;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--primary-white);
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
    background: #fafafa;
    margin: 0;
}

.empty-cart i {
    font-size: 3.5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.empty-cart h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empty-cart p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.continue-shopping-btn {
    background: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-black);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.continue-shopping-btn:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.cart-item-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.cart-item-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
}

.quantity-btn {
    background: var(--primary-black);
    color: var(--primary-white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.quantity-btn:hover {
    background: var(--accent-gray);
    transform: scale(1.1);
}

.quantity-btn.decrease {
    background: #dc3545;
}

.quantity-btn.increase {
    background: #28a745;
}

.quantity-btn.decrease:hover {
    background: #c82333;
}

.quantity-btn.increase:hover {
    background: #218838;
}

.quantity-display {
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary-black);
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--primary-black);
    text-align: right;
}

.remove-btn {
    background: #dc3545;
    color: var(--primary-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
}

.remove-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.cart-total {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-gray);
}

.total-row span:last-child {
    color: var(--primary-black);
    font-weight: 700;
}

.total-row.final {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-black);
    border-top: 2px solid var(--primary-black);
    padding-top: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.total-row.final span {
    color: var(--primary-black);
}

.free-shipping {
    color: #28a745;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 0;
}

.checkout-btn {
    width: 100%;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-black);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.checkout-btn:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.checkout-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.checkout-btn:disabled {
    background: #6c757d;
    color: var(--primary-white);
    cursor: not-allowed;
    border-color: #6c757d;
    transform: none;
    box-shadow: none;
}

.checkout-btn:disabled:hover {
    background: #6c757d;
    color: var(--primary-white);
    transform: none;
    box-shadow: none;
}

/* Checkout Modal Styles */
.checkout-modal .modal-content {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 2.5rem 2rem;
}

.checkout-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.checkout-summary h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.75rem;
}

.checkout-items-list {
    margin-bottom: 2rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.checkout-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    margin-right: 1rem;
}

.checkout-item-name {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.9rem;
    line-height: 1.3;
}

.checkout-item-quantity {
    font-size: 0.8rem;
    color: #666;
}

.checkout-item-total {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 0.95rem;
    min-width: 80px;
    text-align: right;
}

.checkout-totals {
    border-top: 2px solid #e9ecef;
    padding-top: 1.5rem;
}

.checkout-form-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-row .form-group:last-child {
    grid-template-columns: 1fr;
}

.checkout-form .form-group {
    position: relative;
    margin-bottom: 0;
}

.checkout-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.85rem;
}

.checkout-form input {
    width: 100%;
    padding: 0.75rem 2.25rem 0.75rem 2.5rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
    background: white;
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.checkout-form input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

.checkout-form .form-group i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    margin-top: 0.6rem;
    font-size: 0.85rem;
}

.stripe-element {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background: white;
    transition: all var(--transition-smooth);
}

.stripe-element:focus-within {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.card-errors {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.checkout-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 2px solid #e9ecef;
}

.checkout-actions .btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

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

.btn-primary:hover {
    background: #333;
}

.btn-primary:disabled,
.btn-primary.processing {
    background: #999;
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
}

.checkout-security {
    background: #f8f9fa;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 6px;
    border-top: 3px solid var(--primary-black);
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #666;
    font-size: 0.85rem;
}

.security-badges i {
    font-size: 1.2rem;
}

.security-badges .fab {
    font-size: 1.5rem;
}

/* Success Page Styles */
.success-page {
    padding: 0;
    margin-bottom: 0;
    background: #191a1c;
    min-height: 100vh;
}

.success-page main {
    background: #191a1c;
    min-height: 100vh;
    padding-top: 0;
}

.success-page header {
    background: rgba(25, 26, 28, 0.95);
    backdrop-filter: blur(10px);
}

.success-page .nav-menu a {
    color: var(--primary-white) !important;
}

.success-page .nav-menu a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.success-page .hamburger span {
    background: var(--primary-white) !important;
}

.success-page .search-btn,
.success-page .cart-btn {
    background: transparent !important;
    color: var(--primary-white) !important;
}

.success-page .search-btn i,
.success-page .cart-btn i {
    color: var(--primary-white) !important;
}

.success-page .search-btn:hover,
.success-page .cart-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--primary-white) !important;
}

.success-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 6rem;
}

.success-header {
    margin-bottom: 2rem;
}

.success-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

.success-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    animation: successRing 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes successRing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.success-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.success-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.success-summary {
    margin-bottom: 2rem;
}

.summary-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-black);
    max-width: 500px;
    margin: 0 auto;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.summary-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-number {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.summary-row span:first-child {
    font-weight: 600;
    color: var(--text-gray);
}

.summary-row span:last-child {
    font-weight: 700;
    color: var(--primary-black);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.status-badge.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.success-steps {
    margin-bottom: 2rem;
}

.success-steps h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-item {
    background: var(--primary-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all var(--transition-smooth);
}

.step-item:hover {
    border-color: var(--primary-black);
    transform: translateY(-5px);
}

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

.step-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-item p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.success-actions .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    min-width: 200px;
    justify-content: center;
}

.success-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-white);
    font-size: 1.1rem;
}

/* Notification Styles */
#notification-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notification {
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 300px;
    animation: slideInRight 0.3s ease;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-success {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.notification-info {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-info .notification-content i {
    color: #17a2b8;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    margin-left: auto;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Page Loading and Error Handling */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0,0,0,0.1);
    border-left: 3px solid var(--primary-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    min-height: 100vh;
    background: var(--primary-white);
}

body.loading {
    overflow: hidden;
}

.error-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2000;
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
}

.error-container h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.error-container p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.retry-btn {
    background: var(--primary-black);
    color: var(--primary-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-smooth);
}

.retry-btn:hover {
    background: var(--primary-gray);
    transform: translateY(-1px);
}

/* Focus States */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-black);
    outline-offset: 2px;
}

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

/* Contact Page Styles */
.contact-page {
    background-color: #111111;
    color: var(--primary-white);
    min-height: 100vh;
}

.contact-page .about-bonzi {
    background-color: #111111;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-page .about-header {
    max-width: 800px;
    margin: 0 auto;
}

.contact-page .about-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: var(--primary-white);
}

.contact-page .about-tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #cccccc;
    font-weight: 300;
}

.contact-page .products-protection {
    background-color: #111111;
    padding: 60px 0;
}

.contact-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: var(--primary-white);
}

.contact-page .protection-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-page .protection-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #cccccc;
}

.contact-page .mission-section {
    background-color: #111111;
    padding: 60px 0;
    text-align: center;
}

.contact-page .mission-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
}

.contact-page .core-values {
    background-color: #111111;
    padding: 60px 0;
}

.contact-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-page .value-item {
    text-align: center;
    padding: 30px 20px;
}

.contact-page .value-icon {
    width: 80px;
    height: 80px;
    background-color: #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-page .value-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

.contact-page .value-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--primary-white);
}

.contact-page .value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

.contact-page .explore-products {
    text-align: center;
}

.contact-page .explore-btn {
    background-color: var(--primary-white);
    color: var(--primary-black);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-page .explore-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.contact-page .get-in-touch {
    background-color: #111111;
    padding: 80px 0;
}

.contact-page .touch-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.contact-page .contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-page .contact-method {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-page .contact-method:hover {
    transform: translateY(-5px);
}

.contact-page .method-icon {
    width: 60px;
    height: 60px;
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-page .method-icon i {
    font-size: 1.5rem;
    color: var(--primary-white);
}

.contact-page .contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-white);
}

.contact-page .contact-method p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
}

.contact-page .contact-method a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-page .contact-method a:hover {
    color: #cccccc;
}

.contact-page .contact-form-section {
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .contact-form-section-full {
    max-width: 100%;
    margin: 0 auto;
}

.contact-page .contact-form {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
}

.contact-page .form-row {
    margin-bottom: 25px;
}

.contact-page .form-group {
    position: relative;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #2a2a2a;
    border: 2px solid #333333;
    border-radius: 8px;
    color: var(--primary-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
    color: #888888;
}

.contact-page .form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background-color: #1a1a1a;
    padding: 0 10px;
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

.contact-page .send-btn {
    width: 100%;
    background-color: var(--primary-white);
    color: var(--primary-black);
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-page .send-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}
