/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background-color: #F4F1EA;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1A1A1A;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Centered Content */
.centered-content {
    text-align: center;
}

.centered-content h2 {
    text-align: center;
}

.centered-content .hero-content,
.centered-content .about-content,
.centered-content .limited-content,
.centered-content .b2b-content {
    text-align: left;
}

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    transition: transform 0.3s ease;
}

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

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4A90A4;
    letter-spacing: -0.02em;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F4F1EA 0%, #E8F4F8 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4A4A4A;
}

.cta-button {
    background-color: #4A90A4;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3A7A8C;
    transform: translateY(-2px);
}

/* SVG Styles */
.hero-svg, .collection-svg, .product-svg, .about-svg, .limited-svg, .b2b-svg, .artist-svg {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.hero-image {
    min-height: 400px;
}

/* Collections */
.collections {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.collections h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-card {
    background-color: #F9F9F9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collection-card .collection-svg {
    margin-bottom: 1.5rem;
    height: 200px;
}

/* Products */
.products {
    padding: 4rem 0;
    background-color: #F4F1EA;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card .product-svg {
    margin-bottom: 1.5rem;
    height: 180px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A90A4;
    margin: 1rem 0;
}

.product-button {
    background-color: #7DB46C;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-button:hover {
    background-color: #6BA057;
    transform: translateY(-2px);
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-svg {
    height: 300px;
}

.text-link {
    color: #4A90A4;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.text-link:hover {
    border-bottom: 2px solid #4A90A4;
}

/* Sustainability */
.sustainability {
    padding: 4rem 0;
    background-color: #E8F4F8;
}

.sustainability h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.sustainability-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Limited Editions */
.limited-editions {
    padding: 4rem 0;
    background-color: #F4F1EA;
}

.limited-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.limited-svg {
    height: 300px;
}

.next-drop {
    background-color: #FF6B9D;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
}

/* B2B Services */
.b2b-services {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.b2b-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.b2b-svg {
    height: 300px;
}

.b2b-text ul {
    list-style: none;
    padding-left: 0;
}

.b2b-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.b2b-text li:before {
    content: "•";
    color: #4A90A4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Artist Collaborations */
.artist-collaborations {
    padding: 4rem 0;
    background-color: #E8F4F8;
}

.artist-collaborations h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.artist-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card .artist-svg {
    margin-bottom: 1.5rem;
    height: 150px;
    border-radius: 50%;
}

/* Contacts */
.contacts {
    padding: 4rem 0;
    background-color: #F4F1EA;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-item h3 {
    color: #4A90A4;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4A90A4;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #4A90A4;
    margin-bottom: 1rem;
}

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

.footer-section li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFFFFF;
}

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background-color: #4A90A4;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #3A7A8C;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #CCCCCC;
    border: 1px solid #CCCCCC;
}

.cookie-btn.reject:hover {
    background-color: #CCCCCC;
    color: #1A1A1A;
}

.cookie-btn.customize {
    background-color: #7DB46C;
    color: white;
}

.cookie-btn.customize:hover {
    background-color: #6BA057;
}

.cookie-link {
    color: #4A90A4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Cookie Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: #FFFFFF;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E0E0E0;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #1A1A1A;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #1A1A1A;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F0F0F0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    margin: 0;
    color: #1A1A1A;
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Cookie Switch Styles */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #4A90A4;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #4A90A4;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #E0E0E0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .limited-content,
    .b2b-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .collections-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}