/* Luxury Jewelry E-commerce CSS */
/* Inspired by Louis Vuitton, Gucci, and other luxury brands */

/* Custom Font */
@font-face {
    font-family: 'Molen Surplus';
    src: url('../molen-surplus.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #d4af37;
    --accent-color: #1a1a1a;
    --text-dark: #e5e5e5;
    --text-light: #b0b0b0;
    --white: #121212;
    --border-color: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --bg-dark: #0a0a0a;
    --bg-medium: #1a1a1a;
    --bg-light: #2a2a2a;
}

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

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #0a0a0a;
}

/* Custom Scrollbar - Luxury Dark Mode */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-left: 1px solid #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 6px;
    border: 2px solid #0a0a0a;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #b8941f 0%, #9a7b1a 100%);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a #0a0a0a;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Molen Surplus', 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e5e5e5;
    color: #0a0a0a;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: #0a0a0a;
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: #e5e5e5;
    border: 2px solid #e5e5e5;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
    color: #0a0a0a;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: #0a0a0a;
}

.btn-gold:hover {
    background-color: #e5e5e5;
    color: #0a0a0a;
}

/* Header */
.header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-out;
}

.header.scrolled {
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #333;
    transition: all 0.3s ease-out;
}

.header-top {
    background-color: #1a1a1a;
    color: #e5e5e5;
    padding: 6px 0;
    font-size: 11px;
    text-align: center;
    transition: all 0.3s ease-out;
    overflow: hidden;
    max-height: 30px;
    line-height: 1.2;
}


.header-main {
    padding: 20px 0;
    transition: all 0.3s ease-out;
}

.header.scrolled .header-main {
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e5e5e5;
}

.logo img {
    height: 55px;
    margin-right: 15px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e5e5e5;
    font-family: 'Molen Surplus', serif;
}

.nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    font-family: 'Molen Surplus', serif;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon, .cart-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: var(--transition);
    fill: #e5e5e5;
}

.search-icon:hover, .cart-icon:hover {
    fill: var(--secondary-color);
}

.cart-count {
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero_1759076317.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Molen Surplus', serif;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Molen Surplus', serif;
}

/* Categories Section */
.categories {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23d4af37" opacity="0.03"/><circle cx="75" cy="75" r="0.5" fill="%23d4af37" opacity="0.03"/><circle cx="50" cy="10" r="0.3" fill="%23d4af37" opacity="0.02"/><circle cx="10" cy="60" r="0.3" fill="%23d4af37" opacity="0.02"/><circle cx="90" cy="40" r="0.3" fill="%23d4af37" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.categories .container {
    position: relative;
    z-index: 2;
    padding: 0;
    max-width: 100%;
}

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

.section-title {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 40px;
}

.section-title h2 {
    font-family: 'Molen Surplus', 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    border-radius: 3px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
    min-height: auto;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-item {
        height: 450px;
    }
    
    .category-item h3 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-color) #1a1a1a;
        grid-template-columns: unset;
    }
    
    .categories-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .categories-grid::-webkit-scrollbar-track {
        background: #1a1a1a;
        border-radius: 3px;
    }
    
    .categories-grid::-webkit-scrollbar-thumb {
        background: var(--secondary-color);
        border-radius: 3px;
    }
    
    .category-item {
        flex: 0 0 85vw;
        width: 85vw;
        height: 85vw !important;
        min-height: unset !important;
        max-height: unset !important;
        scroll-snap-align: center;
        aspect-ratio: 1 / 1;
    }
    
    .category-image {
        width: 100%;
        height: 100%;
    }
    
    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .category-item h3 {
        font-size: 2.8rem;
        letter-spacing: 3px;
        bottom: 35px;
        transition: color 0.8s ease;
    }
    
    .category-item p {
        transition: color 0.8s ease;
    }
    
    /* Active (centered) category on mobile gets hover effect */
    .category-item.active .category-image::before {
        border-bottom: 3px solid var(--secondary-color);
        border-right: 3px solid var(--secondary-color);
        transition: all 0.8s ease;
    }
    
    .category-item.active .category-image img {
        filter: brightness(0.9) contrast(1.15) saturate(1.1);
        transition: filter 0.8s ease;
    }
    
    .category-item.active h3 {
        color: var(--secondary-color);
    }
    
    .category-item.active p {
        color: var(--secondary-color);
    }
}

@media (max-width: 480px) {
    .category-item {
        flex: 0 0 85vw;
        width: 85vw;
        height: 85vw !important;
        min-height: unset !important;
        max-height: unset !important;
        aspect-ratio: 1 / 1;
    }
    
    .category-item h3 {
        font-size: 2.2rem;
        letter-spacing: 2px;
        bottom: 30px;
        transition: color 0.8s ease;
    }
    
    .category-item p {
        transition: color 0.8s ease;
    }
    
    /* Active (centered) category on mobile gets hover effect */
    .category-item.active .category-image::before {
        border-bottom: 3px solid var(--secondary-color);
        border-right: 3px solid var(--secondary-color);
        transition: all 0.8s ease;
    }
    
    .category-item.active .category-image img {
        filter: brightness(0.9) contrast(1.15) saturate(1.1);
        transition: filter 0.8s ease;
    }
    
    .category-item.active h3 {
        color: var(--secondary-color);
    }
    
    .category-item.active p {
        color: var(--secondary-color);
    }
}

@media (max-width: 320px) {
    .category-item {
        flex: 0 0 85vw;
        width: 85vw;
        height: 85vw !important;
        min-height: unset !important;
        max-height: unset !important;
        aspect-ratio: 1 / 1;
    }
    
    .category-item h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        bottom: 25px;
        transition: color 0.8s ease;
    }
    
    .category-item p {
        transition: color 0.8s ease;
    }
    
    /* Active (centered) category on mobile gets hover effect */
    .category-item.active .category-image::before {
        border-bottom: 3px solid var(--secondary-color);
        border-right: 3px solid var(--secondary-color);
        transition: all 0.8s ease;
    }
    
    .category-item.active .category-image img {
        filter: brightness(0.9) contrast(1.15) saturate(1.1);
        transition: filter 0.8s ease;
    }
    
    .category-item.active h3 {
        color: var(--secondary-color);
    }
    
    .category-item.active p {
        color: var(--secondary-color);
    }
}

.category-item {
    background: #1a1a1a;
    padding: 0;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    height: 500px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.category-item:hover {
    transform: none;
    box-shadow: none;
}

.category-image {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: none;
    background-clip: padding-box;
    flex: 1;
}

.category-image::before {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30%;
    height: 30%;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
    transition: all 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

.category-item:hover .category-image::before {
    border-bottom: 3px solid var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.8s ease;
    filter: brightness(0.8) contrast(1.1) saturate(1.0);
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.category-image img[src=""] {
    opacity: 0;
}

.category-image img:not([src=""]) {
    opacity: 1;
}

.category-item:hover .category-image img {
    filter: brightness(0.9) contrast(1.15) saturate(1.1);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 50%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.category-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

.category-placeholder svg {
    width: 80px;
    height: 80px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.category-item h3 {
    font-family: 'Molen Surplus', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: white;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    text-align: center;
    width: 90%;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-item:hover h3 {
    transform: translateX(-50%);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    color: var(--secondary-color);
}

.category-item p {
    display: none;
}

/* Special Section */
.special {
    padding: 80px 0;
    background-color: #121212;
}

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

.special-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.special-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.special-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.special-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.product-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    border-color: #d4af37;
}

.product-image {
    position: relative;
    overflow: hidden;
}

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

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

/* Product badges on image overlay - Professional positioning */
.product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
    max-height: 60px;
    overflow: hidden;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
    opacity: 0.95;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.product-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.product-badge:hover::before {
    left: 100%;
}

.product-badge.featured {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: #ffffff;
}

.product-badge.sale {
    background: linear-gradient(135deg, var(--secondary-color), #ffd700);
    color: #ffffff;
    font-weight: 700;
}

/* Badge icons removed for cleaner professional look */

/* Hide badges on hover for cleaner jewelry focus */
.product-card:hover .product-badges {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Animation for badge appearance */
.product-badge {
    animation: badgeSlideIn 0.3s ease-out;
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateX(15px) scale(0.9);
    }
    to {
        opacity: 0.95;
        transform: translateX(0) scale(1);
    }
}

.product-info {
    padding: 24px;
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    position: absolute;
    top: -12px;
    left: 12px;
    background: #e5e5e5;
    color: #0a0a0a;
    padding: 4px 8px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 2px;
    z-index: 2;
    margin-bottom: 0;
}

.product-title {
    padding: 0;
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
    min-height: auto;
    max-height: 3.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Playfair Display', serif;
    word-wrap: break-word;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.product-description {
    font-size: 15px;
    color: #b0b0b0;
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    opacity: 0.9;
}

.product-price {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    margin: 0 0 20px 0;
    padding: 0;
    border-top: none;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    position: relative;
}

.price-original {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    opacity: 0.7;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    margin-top: 2px;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    margin-top: auto;
}

.btn-small {
    padding: 12px 20px;
    font-size: 12px;
    flex: 1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-small .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-small .btn-text {
    display: inline;
}

.btn-small:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary.btn-small {
    background: transparent;
    color: #e5e5e5;
    border: 1px solid #444;
}

.btn-secondary.btn-small:hover {
    background: #e5e5e5;
    color: #0a0a0a;
    border-color: #e5e5e5;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: #e5e5e5;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p, .footer-section a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 44px;
    margin-right: 15px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--white);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Shop Page */
.shop-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero_1759076317.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.shop-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.shop-hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.shop-header {
    background-color: #121212;
    padding: 120px 0 60px;
    text-align: center;
}

.filters {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid #333;
}

.filters-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e5e5e5;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-size: 14px;
    background-color: #0a0a0a;
    color: #e5e5e5;
}

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

/* Cart Page */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #333;
}

.cart-table th,
.cart-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.cart-table th {
    background-color: #0a0a0a;
    font-weight: 600;
    color: #e5e5e5;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.quantity-input {
    width: 60px;
    padding: 8px;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    text-align: center;
    background-color: #0a0a0a;
    color: #e5e5e5;
}

.cart-summary {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    margin-top: 30px;
    border: 1px solid #333;
}

.cart-summary h3 {
    margin-bottom: 20px;
    color: #e5e5e5;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    border-bottom: none;
}

/* Checkout Page */
.checkout-form {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e5e5e5;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
    background-color: #0a0a0a;
    color: #e5e5e5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    /* Rotate hero images 90 degrees on mobile phones */
    .hero,
    .shop-hero {
        position: relative;
        overflow: hidden;
        background-attachment: scroll !important;
    }
    
    .hero::before,
    .shop-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vh;
        height: 100vw;
        background-image: inherit;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center center;
        z-index: 0;
    }
    
    .hero::after,
    .shop-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
        z-index: 1;
    }
    
    .hero-content,
    .shop-hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .shop-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .shop-hero-content p {
        font-size: 1.2rem;
        max-width: 500px;
    }
    
    .special-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .filters-content {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cart-table {
        font-size: 14px;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 15px 10px;
    }
    
    .btn-small {
        padding: 12px;
        min-width: 44px;
    }
    
    .btn-small .btn-text {
        display: none;
    }
    
    .btn-small .btn-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    /* Keep full image visible on smaller phones */
    .hero::before,
    .shop-hero::before {
        width: 100vh;
        height: 100vw;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .shop-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .shop-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .shop-hero-content p {
        font-size: 1.1rem;
        max-width: 400px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-description {
        font-size: 14px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Newsletter Form */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-size: 16px;
    background-color: #0a0a0a;
    color: #e5e5e5;
    transition: var(--transition);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.newsletter-form .btn {
    padding: 15px 30px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-form .btn .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.newsletter-form .btn .btn-text {
    display: inline;
}

/* Newsletter Form Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        gap: 8px;
        max-width: 100%;
    }
    
    .newsletter-form input[type="email"] {
        padding: 12px;
        font-size: 14px;
    }
    
    .newsletter-form .btn {
        padding: 12px;
        min-width: 44px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .newsletter-form .btn .btn-text {
        display: none;
    }
    
    .newsletter-form .btn .btn-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-form {
        gap: 10px;
    }
    
    .newsletter-form input[type="email"] {
        padding: 10px;
        font-size: 13px;
    }
    
    .newsletter-form .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3,
.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-link {
    color: var(--secondary-color);
    transition: var(--transition);
}

.contact-link:hover {
    color: #e5c76b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    background-color: #0a0a0a;
    color: #e5e5e5;
    font-size: 16px;
    transition: var(--transition);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 30px;
        margin-top: 30px;
    }
    
    .contact-info h3,
    .contact-form-wrapper h3 {
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        padding: 10px;
        font-size: 14px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }
.visible { display: block; }
