/* Intuitive Font */
@font-face {
    font-family: 'Intuitive';
    src: url('../fonts/INTUITIVE FREE.ttf') format('truetype'),
        url('../fonts/INTUITIVE FREE.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Goorm Sans Font Family */
@font-face {
    font-family: 'Goorm Sans';
    src: url('../fonts/goorm sans/Web/OTF/goorm-sans-regular.woff2') format('woff2'),
        url('../fonts/goorm sans/Web/OTF/goorm-sans-regular.woff') format('woff'),
        url('../fonts/goorm sans/Web/OTF/goorm-sans-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Goorm Sans';
    src: url('../fonts/goorm sans/Web/OTF/goorm-sans-medium.woff2') format('woff2'),
        url('../fonts/goorm sans/Web/OTF/goorm-sans-medium.woff') format('woff'),
        url('../fonts/goorm sans/Web/OTF/goorm-sans-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Goorm Sans';
    src: url('../fonts/goorm sans/Web/OTF/goorm-sans-bold.woff2') format('woff2'),
        url('../fonts/goorm sans/Web/OTF/goorm-sans-bold.woff') format('woff'),
        url('../fonts/goorm sans/Web/OTF/goorm-sans-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: 'Goorm Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* Global Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
    padding: 20px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #333;
    text-decoration: underline;
}

/* Promotional Banner */
.promo-banner {
    background: black;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.promo-banner:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-image {
    max-height: 30px;
    width: auto;
    margin-right: 10px;
    border-radius: 4px;
    object-fit: cover;
}

.promo-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.promo-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-image {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Intuitive', cursive;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    font-style: italic;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.search-bar input:hover {
    border-color: #ccc;
    background: white;
}

.search-bar input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

/* Live Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: inherit;
}

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

.search-result-item:hover {
    background: #f8f9ff;
}

.search-result-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-artist {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.search-result-price {
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
}

.search-result-medium {
    font-size: 11px;
    color: #999;
    margin-left: 8px;
}

.no-results-message {
    padding: 20px 16px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.search-loading {
    padding: 20px 16px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.search-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e0e0e0;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive for Search */
@media (max-width: 768px) {
    .search-bar {
        max-width: 100%;
        margin: 0 20px;
    }

    .search-results {
        max-height: 300px;
    }

    .search-result-item {
        padding: 10px 12px;
    }

    .search-result-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .search-result-title {
        font-size: 13px;
    }

    .search-result-artist {
        font-size: 11px;
    }

    .search-result-price {
        font-size: 11px;
    }

    .search-result-medium {
        font-size: 10px;
    }
}

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

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 18px;
}

.icon-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.nav-item {
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #333;
}

.nav-item:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 30px;
}

.carousel-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    left: 80px;
    max-width: 500px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333;
}

.slide-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Category Pills */
.category-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

.category-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-pill {
    padding: 12px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-pill:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

/* Footer Styles */
footer {
    background: #1a1a1a;
    color: #fff;
}

footer .footer-categories {
    background: #ffe6f0 !important;
}

/* Top Categories Bar */
.footer-categories {
    background: #ffe6f0 !important;
    padding: 20px 0;
    border-bottom: 1px solid #ffb3d1;
}

.footer-categories-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-categories-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.footer-categories-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-category-link {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-category-link:hover {
    color: #667eea;
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    background: #1a1a1a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Newsletter Section */
.footer-newsletter {
    max-width: 400px;
}

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

.footer-logo .logo-image {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-logo-text {
    font-family: 'Intuitive', cursive;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-desc {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    background: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #667eea;
    background: #333;
}

.newsletter-submit {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.gift-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #2d2d2d;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.gift-card-link:hover {
    background: #667eea;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #2d2d2d;
    padding: 30px 0;
    background: #1a1a1a;
    position: relative;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #667eea;
}

.footer-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #2d2d2d;
    border-radius: 20px;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-selector:hover {
    background: #3d3d3d;
}

.currency-selector {
    padding: 8px 15px;
    background: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 20px;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
}

.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.footer-copyright a {
    color: #888;
    text-decoration: underline;
}

.footer-copyright a:hover {
    color: #667eea;
}

/* Loo Art branding */
.loo-art-branding {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #888;
    font-style: italic;
    transform: rotate(-5deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 15px;
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin: 15px 0 0 0;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 20px;
    }

    .slide-content {
        left: 20px;
        right: 20px;
        padding: 30px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }
}
