/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #fff;
}

h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #333;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #333;
}

.btn-primary {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: rgba(0, 0, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #333;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&h=800&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.3)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 30px;
}

.hero h1 {
    font-size: 5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 400;
}

/* Categories Section Styles */
.categories {
    padding: 8rem 0;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1rem;
}

.categories-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

/* Category Slider Styles */
.category-slider-container {
    position: relative;
    padding: 0 40px;
}

.category-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
    padding: 1rem 0;
}

.category-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Category Card Styles */
.category-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #fff;
    z-index: 1;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.category-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.category-link:hover {
    opacity: 1;
}

.category-link .arrow {
    transition: transform 0.3s ease;
}

.category-link:hover .arrow {
    transform: translateX(5px);
}

/* Slider Arrow Styles */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-arrow:hover {
    background: #333;
    color: #fff;
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories {
        padding: 4rem 0;
    }

    .categories-header h2 {
        font-size: 2rem;
    }

    .category-card {
        flex: 0 0 260px;
    }

    .category-image {
        height: 350px;
    }

    .category-content {
        padding: 1.5rem;
    }

    .category-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .category-slider-container {
        padding: 0 20px;
    }

    .category-card {
        flex: 0 0 220px;
    }

    .category-image {
        height: 300px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }
}

/* Products Section */
.product-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn-secondary {
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.product-overlay .btn-secondary:hover {
    background: #000;
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info .price {
    color: #666;
    font-weight: 500;
}

/* Add responsive grid for smaller screens */
@media (max-width: 1024px) {
    .product-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .product-slider {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    border-radius: 4px;
}

.contact-form textarea {
    min-height: 150px;
}

.info-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item .icon {
    color: #333;
}

/* Send Message Button */
.contact-form .btn-primary {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.category-card,
.product-card,
.about-content {
    animation: fadeIn 1s ease-out;
}

/* Spacing Improvements */
section {
    padding: 5rem 0;
}

.product-info {
    text-align: center;
    padding: 1rem 0;
}

.price {
    color: #666;
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modify Categories and New Arrivals initial state */
.category-grid,
.product-slider {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.category-grid.visible,
.product-slider.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    background-color: #f8f8f8;
    padding: 5rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-section.brand h3 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #333;
}

.footer-section.brand p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #000;
    background: #f5f5f5;
    border-color: #999;
}

/* Contact Icons */
.footer-section.contact .icon {
    font-size: 1.2rem;
    margin-right: 10px;
    display: inline-block;
    width: 20px;
}

/* Section Headers */
.footer-section h4 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Lists */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000;
}

/* Contact Section */
.footer-section.contact ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.footer-section.contact i {
    color: #333;
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Shop Page Styles */
.shop-header {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.shop-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?auto=format&q=80&w=2000');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: -1;
}

.shop-header h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-filters {
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem;
    backdrop-filter: blur(5px);
}

.filter-btn:hover,
.filter-btn.active {
    background: #fff;
    color: #333;
    border-color: #fff;
}

@media (max-width: 768px) {
    .shop-header {
        padding: 4rem 0;
    }

    .shop-header h1 {
        font-size: 2.5rem;
    }

    .category-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Shop Grid Layout */
.shop-grid {
    padding: 2rem 0;
    background-color: #f8f8f8;
    min-height: 100vh;
}

.shop-grid .container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Filters Sidebar */
.filters-sidebar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 500;
}

/* Price Range Slider */
.price-range {
    padding: 0 10px;
}

.price-slider {
    width: 100%;
    margin-bottom: 1rem;
    -webkit-appearance: none;
    height: 2px;
    background: #ddd;
    border-radius: 2px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-inputs input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Size Options */
.size-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.size-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.3rem 0;
}

.size-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Color Options */
.color-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

/* Filter Toggle Button */
.filter-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 998;
    display: none; /* Hidden by default, shown on mobile */
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Show filter toggle on mobile */
    .filter-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .filter-toggle span {
        font-size: 14px;
    }

    /* Adjust grid layout */
    .shop-grid .container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Hide sidebar by default on mobile */
    .filters-sidebar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1.5rem;
        border-radius: 15px 15px 0 0;
        z-index: 999;
        box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    }

    .filters-sidebar.active {
        display: block;
    }

    /* Product card adjustments */
    .product-card {
        margin-bottom: 1rem;
    }

    .product-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 0.8rem;
    }

    .product-image {
        height: 150px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    position: relative;
    margin: 2rem auto;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    z-index: 2;
}

/* Product Detail Styles */
.product-detail {
    padding: 2rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-detail-images {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-detail-info {
    padding: 1rem 0;
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-price {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Product Options */
.product-options > div {
    margin-bottom: 2rem;
}

.product-options h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #333;
}

/* Size Selector */
.size-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: #333;
}

.size-option.selected {
    background: #333;
    color: white;
    border-color: #333;
}

/* Color Selector */
.color-options {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.color-option.selected {
    border-color: #333;
}

/* Quantity Selector */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.5rem;
}

.quantity-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
}

/* Add to Cart Button */
.add-to-cart {
    width: 100%;
    margin: 2rem 0;
}

/* Product Description */
.product-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.product-description h3 {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-content {
        margin: 0;
        min-height: 100vh;
        border-radius: 0;
    }
}

/* Product Name Styles */
.product-info h3.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.product-info h3.product-name:hover {
    color: #000;
    text-decoration: underline;
}

/* Quick View Button Hover Effect */
.product-overlay .btn-secondary {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay .btn-secondary {
    transform: translateY(0);
    opacity: 1;
}

/* Add hover state to the overlay */
.product-overlay {
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 1rem 0;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pagination-btn:hover:not(:disabled) {
    background: #333;
    color: #fff;
    border-color: #333;
}

.pagination-btn.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.pagination-btn:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.pagination-btn.prev,
.pagination-btn.next {
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
    }

    .pagination-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* About Us Section Styles */
.about-us {
    padding: 8rem 0;
    position: relative;
    background-color: #f8f8f8;
    overflow: hidden;
}

.decorative-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #f3f3f3 25%, transparent 25%),
                linear-gradient(-45deg, #f3f3f3 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #f3f3f3 75%),
                linear-gradient(-45deg, transparent 75%, #f3f3f3 75%);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* About Content Styles */
.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #333;
    margin-top: 0.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

/* Feature Styles */
.about-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Stats Styles */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Image Grid Styles */
.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
}

.image-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

.main-image {
    grid-row: span 2;
    height: 500px;
}

.image-item:not(.main-image) {
    height: 245px;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: #333;
    color: #fff;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        text-align: center;
    }

    .section-subtitle::after {
        margin: 0.5rem auto 0;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Featured Collections Section */
.featured-collections {
    padding: 8rem 0;
    background-color: #fff;
    position: relative;
}

.collections-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.header-content {
    max-width: 500px;
}

.header-content h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
    color: #333;
}

/* Collection Tabs */
.collection-tabs {
    display: flex;
    gap: 1rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Collections Grid */
.collections-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Showcase Styles */
.collection-showcase {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.showcase-image {
    position: relative;
    height: 600px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.showcase-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-outline-light {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #333;
}

/* Collection Highlights */
.collection-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.highlight-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-image {
    height: 190px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.highlight-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    opacity: 0.9;
}

/* Collection Features */
.collection-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .collections-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .collection-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .showcase-image {
        height: 400px;
    }

    .collection-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .showcase-content {
        padding: 2rem;
    }

    .showcase-content h3 {
        font-size: 1.5rem;
    }

    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
}

.splash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&q=80&w=1920');
    background-size: cover;
    background-position: center;
    animation: zoomBackground 20s ease infinite alternate;
}

.splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.splash-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.brand-mark {
    font-size: 4rem;
    font-weight: 300;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s ease forwards 0.5s;
}

.splash-logo {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.logo-line {
    width: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    margin: 2rem auto;
    animation: expandLine 1.5s ease forwards 0.5s;
}

.splash-tagline {
    font-size: 0.9rem;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
}

.enter-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 3px;
    padding: 1.2rem 2.5rem;
    margin-top: 3rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.enter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.enter-button:hover::before {
    transform: translateX(100%);
}

.splash-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandLine {
    to {
        width: 100px;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes zoomBackground {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Exit Animation */
.splash-screen.exit {
    transform: translateY(-100%);
    transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .splash-logo {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }

    .brand-mark {
        font-size: 3rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    .splash-tagline {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .enter-button {
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .splash-logo {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .splash-content {
        padding: 1.5rem;
    }
}

/* Update these styles in your existing CSS */
body {
    margin: 0;
    padding: 0;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.splash-screen.exit {
    transform: translateY(-100%);
}

.site-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}
