/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fef9e7;
    color: #00AAE9;
    line-height: 1.6;
}

.container {
    margin: 3%;
    padding: 0 15px;
}



/* Mobile Header Fixed */
.mobile-header-fixed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: #fef9e7;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo-fixed img {
    height: 45px;
    width: auto;
}

.burger-btn {
    width: 40px;
    height: 40px;
    background: #00AAE9;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.burger-btn:hover {
    background: #0098d1;
    transform: scale(1.05);
}

.burger-btn span {
    width: 20px;
    height: 2px;
    background: var(--color-textLight, #00AAE9);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Transform burger into close button when menu is active */
.mobile-overlay.active ~ .mobile-header-fixed .burger-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-overlay.active ~ .mobile-header-fixed .burger-btn span:nth-child(2) {
    opacity: 0;
}

.mobile-overlay.active ~ .mobile-header-fixed .burger-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00AAE9;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-overlay.active {
    transform: translateX(0);
}



/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    margin-top: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
    text-align: center;
}

.mobile-nav-link {
    color: white;
    text-transform: lowercase;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link:hover {
    background: #FFD700;
    color: #00AAE9;
}

/* Header Section */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

/* Hero Section */
.hero-section {
    margin-top: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-default {
    opacity: 1;
}

.logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.header-logo:hover .logo-default {
    opacity: 0;
}

.header-logo:hover .logo-hover {
    opacity: 1;
}

.nav-left, .nav-right {
    display: flex;
    gap: 15px;
}

.nav-btn {
    text-transform: lowercase;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #00AAE9;
    background: transparent;
    color: #00AAE9;
    border-radius: 25px;
    font-weight: 900;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-btn:hover {
    background-color: #00AAE9;
    color: white;
}

.nav-btn.primary {
    background-color: #00AAE9;
    color: white;
}

.nav-btn.primary:hover {
    background-color: #0098d1;
}

.hero-image {
    width: 100%;
    height: 700px;
    overflow: hidden;
}

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

/* Scrolling Logo Section */
.scrolling-logo {
    margin-top: 80px;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: scroll-logo 20s linear infinite;
    white-space: nowrap;
    min-width: 200%; /* Ensures enough width for two sets of logos */
}

.logo {
    height: 150px;
    width: auto;
    flex-shrink: 0;
}

@keyframes scroll-logo {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero Content Section */
.hero-content {
}

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

.hero-title h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #00AAE9;
    text-transform: lowercase;
    font-family: 'Calistoga', serif;
}

.title-graphic {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arches {
    display: flex;
    gap: 5px;
}

.arch {
    width: 20px;
    height: 15px;
    background-color: #00AAE9;
    border-radius: 10px 10px 0 0;
}

.dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #00AAE9;
    border-radius: 50%;
}

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

.hero-text p {
    color: #00AAE9;
    font-size: 40px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1;
}

.calistoga-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 800;
}

.hero-text p:nth-child(2) {
    font-weight: 500;
}

.hero-text p:nth-child(3) {
    font-weight: 600;
}

.cta-btn {
    background-color: #00AAE9;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #0098d1;
    transform: translateY(-2px);
}

.hero-image-right {
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #00AAE9;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background-color: #00AAE9;
    transform: scale(1.1);
}

.indicator.active {
    background-color: #00AAE9;
}

/* Discover Our Work Section */
.discover-work {
    background-color: #fef9e7;
    padding: 30px 0;
}

.discover-work h2 {
    font-size: 2.5rem;
    color: #00AAE9;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
}

.gallery {
    margin-bottom: 40px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 3px solid var(--color-textPrimary);
}

.placeholder {
    background-color: transparent;
}

.placeholder-content {
    width: 100%;
    height: 400px;
    background-image: 
        linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
        linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
        linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-title {
    color: #00AAE9;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-artist {
    font-size: 14px;
    margin-bottom: 10px;
    font-style: italic;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
}

.image-description {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    color: #00AAE9;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.gallery-item-details {
    margin-bottom: 15px;
}

.gallery-item-format,
.gallery-item-print {
    font-size: 12px;
    line-height: 1.4;
    color: #00AAE9;
    margin: 0 0 5px 0;
    font-family: 'Satoshi', sans-serif;
}

.gallery-item-format strong,
.gallery-item-print strong {
    color: #B7CEA5;
    font-weight: 600;
}

.detail-btn {
    background: #fef9e7;
    color: #00AAE9;
    border: 2px solid #00AAE9;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.detail-btn:hover {
    background: #00AAE9;
    color: white;
}

.discover-work .cta-btn {
    display: block;
    margin: 80px auto 0 auto;
    padding: 15px 40px;
    font-size: 18px;
    width: fit-content;
}

/* Did You Like It Section */
.did-you-like {
    background-color: #fef9e7;
}

.did-you-like h2 {
    font-size: 2.5rem;
    color: #00AAE9;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
}

.text-content {
    max-width: 800px;
    margin: 0 0 40px 0;
    text-align: left;
}

.text-content p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    color: #00AAE9;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.did-you-like .cta-btn {
    display: block;
    margin: 0;
    width: fit-content;
}

/* Footer */
.footer {
    color: white;
    padding: 80px 0;
}

.footer-guide-page {
    background-color: var(--color-primary);
    color: var(--color-textPrimary);
    padding: 80px 0;
    margin-left: 300px;
}



.footer-container {
    margin: 0 80px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.address-block h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    margin: 0 0 15px 0;
}

.address-block p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    font-family: 'Satoshi', sans-serif;
}

.footer-legal {
    flex: 0 0 250px;
}

.footer-legal h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    margin: 0 0 20px 0;
}

.footer-social {
    flex: 0 0 200px;
}

.footer-social h3 {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    margin: 0 0 20px 0;
}


.footer-legal {
    flex: 0 0 250px;
}

.footer-legal h3 {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    margin: 0 0 30px 0;
    color: white;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legal-link {
    text-decoration: none;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.legal-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-link {
    text-decoration: none;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

/* Workshop Page Styles */

.filters-title {
    font-size: 18px;
    font-weight: 900;
    font-family: 'Satoshi', sans-serif;
    color: var(--color-primary, #FF6B35);
    margin-left: 20px;
}

.filters-title #1 {
    font-size: 18px;
    font-weight: 900;
    font-family: 'Satoshi', sans-serif;
    margin-left: 20px;
}

.container-workshop {
    margin: 0px;
    padding: 0 0px;
}

.workshop-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.workshop-hero {
    padding: 60px 0 0px 0;
}

.workshop-title {
    margin-top: 80px !important;
    margin: 0 80px;
    font-size: 48px;
    font-weight: 700;
    font-family: 'Calistoga', serif;
    text-align: left;
    margin-bottom: 40px;
    color: #FF6B35;
}

.workshop-image {
    
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-bottom: 30px;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.workshop-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.workshop-indicators .indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid var(--color-primary, #FF6B35);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-indicators .indicator.active {
    background-color: var(--color-primary, #FF6B35);
}

.workshop-indicators .indicator:hover {
    background-color: var(--color-primary, #FF6B35);
    opacity: 0.7;
}

.how-it-works {
    padding: 40px 0;
}

.section-title {
    line-height: 1.2;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Satoshi Black', sans-serif;
    color: #FF6B35;
    margin-bottom: 30px;
    text-align: left;
}

.section-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-textSecondary, #666);
    margin-bottom: 40px;
    max-width: 800px;
    font-family: 'Satoshi', sans-serif;
}

.highlight {
    color: #FF6B35;
    font-weight: 600;
}

.workshop-placeholders {
    display: flex;
    gap: 30px;
    
}

.placeholder-box {
    flex: 1;
    height: 700px;
    /*border: 3px solid #FF6B35;*/
    /* border-radius: 8px;*/
    background-color: transparent;
}

.appointment-btn {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.appointment-btn:hover {
    background-color: #E55A2B;
}

/* About Page Styles */
.container-about {
    margin: 0 80px;
    margin-top: 80px;
    padding: 0 20px;
}

.about-hero {
    padding: 120px 0 60px 0;
    background-color: var(--color-background, #F8F9FA);
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Calistoga', serif;
    color: var(--color-primary, #FF6B35);
    margin: 0;
    text-align: left;
}

.about-content {
    padding: 60px 0;
    background-color: var(--color-background, #F8F9FA);
}

.about-section {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 30px;
}

.section-indicators {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.section-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-primary, #FF6B35);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-indicators .indicator.active {
    background-color: var(--color-primary, #FF6B35);
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.section-text {
    flex: 1;
    max-width: 800px;
}

.section-actions {
    flex-shrink: 0;
}

.guide-btn {
    background-color: var(--color-primary, #FF6B35);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.guide-btn:hover {
    background-color: var(--color-secondary, #E55A2B);
}


.placeholder-box.large {

    height: 700px;
    border: 3px solid var(--color-primary, #FF6B35);
    border-radius: 20px;
    background-color: #E0E0E0;
}

.team-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 20px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    background-color: #E0E0E0;
    margin: 0 auto 20px auto;
    border: 3px solid var(--color-primary, #FF6B35);
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    color: var(--color-textPrimary, #333);
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--color-textSecondary, #666);
    font-family: 'Satoshi', sans-serif;
}

/* Guide Page Styles */
.container-guide {
    margin: 0 auto;
    padding: 0 20px;
}

.guide-content {
    margin: 0 80px;
    padding: 60px 0;
    background-color: var(--color-background, #F8F9FA);
}

.guide-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.section-number {
    font-size: 120px;
    font-weight: 700;
    font-family: 'Calistoga', serif;
    color: var(--color-primary, #1E3A8A);
    line-height: 1;
    flex-shrink: 0;
    width: 120px;
    text-align: center;
}

.guide-section:nth-child(even) .section-number {
    order: 2;
}

.guide-section:nth-child(even) .section-content {
    order: 1;
}

.section-content {
    flex: 1;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.section-text-content {
    flex: 2;
}

.guide-section .section-title {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Calistoga', serif;
    color: var(--color-primary, #1E3A8A);
    margin-bottom: 30px;
    text-align: left;
}

.guide-section .section-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-textSecondary, #666);
    margin-bottom: 40px;
    max-width: none;
    font-family: 'Satoshi', sans-serif;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--color-primary, #1E3A8A);
    background-color: white;
    transition: all 0.3s ease;
}

.file-item.active {
    background-color: var(--color-primary, #1E3A8A);
    color: white;
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary, #1E3A8A);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.file-item.active .file-icon {
    background-color: white;
    color: var(--color-primary, #1E3A8A);
}

.file-text {
    font-size: 16px;
    font-family: 'Satoshi', sans-serif;
    flex: 1;
    color: var(--color-textSecondary, #666);
}

/* File Dropdown */
.file-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
    border-radius: 8px;
    margin: 10px 0 20px 0;
    border: 2px solid var(--color-primary, #1E3A8A);
}

.file-dropdown.active {
    max-height: 500px;
}

.dropdown-content {
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.dropdown-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--color-primary, #1E3A8A);
}

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

.dropdown-text {
    flex: 1;
}

.dropdown-text h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    color: var(--color-primary, #1E3A8A);
    margin-bottom: 15px;
}

.dropdown-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-textSecondary, #666);
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 8px;
}

.dropdown-text p:last-child {
    margin-bottom: 0;
}

.cut-lines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cut-line-box {
    height: 200px;
    border: 2px solid var(--color-primary, #1E3A8A);
    border-radius: 12px;
    background-color: white;
}

.summary-section {
    justify-content: center;
    text-align: center;
}

.summary-section .section-content {
    max-width: 600px;
    margin: 0 auto;
}

.quote-button {
    margin-top: 40px;
}

.quote-btn {
    background-color: var(--color-primary, #1E3A8A);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: var(--color-secondary, #1E40AF);
}

/* Shop Page Styles */
.shop-section {
    padding: 120px 0 80px 0;
}

.container-shop {
    margin: 3%;
    padding: 0 15px;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.shop-title {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Calistoga', serif;
    text-align: left;
    margin: 0;
}

.filter-dots {
    display: flex;
    gap: 0px;
    align-items: center;
}

.filter-dot {
    margin-bottom: 10px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-dot .dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid;
    background-color: transparent;
    transition: all 0.3s ease;
}

.filter-dot.blue .dot {
    border-color: #397A3A;
}

.filter-dot.purple .dot {
    border-color: #8A2BE2;
}

.filter-dot.red .dot {
    border-color: #FF6B35;
}

.filter-dot.yellow .dot {
    border-color: #FFE126;
}

.filter-dot.active .dot {
    background-color: inherit;
    transform: scale(1.1);
}

.filter-dot.active.blue .dot {
    background-color: #397A3A;
}

.filter-dot.active.purple .dot {
    background-color: #8A2BE2;
}

.filter-dot.active.red .dot {
    background-color: #FF6B35;
}

.filter-dot.active.yellow .dot {
    background-color: #FFE126;
}

.filter-dot:hover .dot {
    transform: scale(1.05);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.shop-item {
    background: #24174B;
    border-radius: 30px;
    overflow: hidden;
    border: 5px solid #00AAE9;
    transition: transform 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-5px);
}

.shop-item-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.shop-item:hover .shop-item-image img {
    transform: scale(1.05);
}

.shop-item-title {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    margin: 20px 20px 5px 20px;
    color: #B7CEA5;
}

.shop-item-artist {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    margin: 0 20px 10px 20px;
    font-style: italic;
}

.shop-item-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 4.5em;

    font-size: 16px;
    line-height: 1.5;
    color: #B7CEA5;
    margin: 0 20px 15px 20px;
    font-family: 'Satoshi', sans-serif;
}

.shop-item-details {
    margin: 0 20px 15px 20px;
}

.shop-item-format,
.shop-item-print {
    font-size: 14px;
    line-height: 1.4;
    color: #B7CEA5;
    margin: 0 0 8px 0;
    font-family: 'Satoshi', sans-serif;
}

.shop-item-format strong,
.shop-item-print strong {
    color: #00AAE9;
    font-weight: 600;
}

.shop-item-date {
    font-size: 14px;
    color: #B7CEA5;
    margin: 0 20px 20px 20px;
    font-family: 'Satoshi', sans-serif;
    font-style: italic;
}

.shop-item-button {
    display: block;
    background-color: #B7CEA5;
    color: #24174B;
    text-decoration: none;
    padding: 15px 30px;
    margin: 0 20px 20px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    transition: background-color 0.3s ease;
}

.shop-item-button:hover {
    background-color: #0098d1;
}

.product-price {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color-primary, #1E3A8A);
    margin-top: 10px;
    margin-bottom: 5px;
    display: inline-block;
}

/* Active Navigation Button */
.nav-btn.active {
    background-color: #00AAE9;
    color: white;
    border-color: #00AAE9;
}

.mobile-nav-link.active {
    color: #00AAE9;
    font-weight: 600;
}

.section-placeholder {
    display: flex;
    gap: 30px;
    flex: 1;
    flex-direction: row;
    flex-shrink: 0;
}

.content-grid {
    border: 3px solid var(--color-primary);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-left: 0;  /* Remove auto margin from left */
    margin-right: auto;
}


.follow-content{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    gap: 10px;
    padding: 40px;
    background-color:var(--color-footerBg,);
    border-radius: 30px;
    margin-top: 3%;
}

.follow-content p{
    font-size: px;
    color: var(--color-background,);
    margin: 0px;
}

.follow-content a{
    font-size: 2.5rem;
    color: var(--color-background,);
}

.follow-content img{
    width: 80px;
    height: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #footer-logo-mobile {
        width: 100%;
    }

    .mobile-header-fixed {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-title {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
       height: 700px;
    }
    .hero-title h1 {
        font-size: 3rem;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
    }
    
    .scrolling-logo {
        display: none;
    }
    
    .container {
        margin: 0px;
        padding: 0 15px;
    }

    .did-you-like {
        margin-top: 80px;
    }

    .footer {
        margin-top: 80px;
        padding: 60px 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        margin: 0 15px;
    }
    
    .footer-addresses {
        gap: 30px;
    }
    
    .address-block h3 {
        font-size: 18px;
    }
    
    .address-block p {
        font-size: 14px;
        margin-bottom: 0px;
    }
    
    .footer-legal,
    .footer-social {
        flex: none;
        width: 100%;
    }
    
    .footer-legal h3,
    .footer-social h3 {
        font-size: 28px;
    }
    
    .legal-links,
    .social-links {
        gap: 5px;
    }
    
    .legal-link,
    .social-link {
        font-size: 14px;
    }
    
    /* Shop Page Mobile Styles */
    .shop-section {
        padding: 100px 0 60px 0;
    }
    
    .shop-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .shop-title {
        font-size: 36px;
        margin: 0;
        text-align: left;
    }
    
    .filter-dots {
        gap: 10px;
    }
    
    .filter-dot .dot {
        width: 32px;
        height: 32px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 20px;
    }
    
    .shop-item-image {
        height: 400px;
    }
    
    .shop-item-title {
        font-size: 20px;
        margin: 15px 15px 5px 15px;
    }
    
    .shop-item-artist {
        font-size: 14px;
        margin: 0 15px 8px 15px;
    }
    
    .shop-item-description {
        font-size: 14px;
        margin: 0 15px 12px 15px;
    }
    
    .shop-item-details {
        margin: 0 15px 12px 15px;
    }
    
    .shop-item-format,
    .shop-item-print {
        font-size: 12px;
        margin: 0 0 6px 0;
    }
    
    .shop-item-date {
        font-size: 12px;
        margin: 0 15px 15px 15px;
    }
    
    .shop-item-button {
        padding: 12px 25px;
        margin: 0 15px 15px 15px;
        font-size: 14px;
    }

    .container-shop {
        margin: 0px;
        padding: 0 0px;
    }

    .shop-header{
        gap: 0px;
    }

    .shop-title {   
        font-size: 48px;
  
        text-align: left;
    }

    .workshop-title {
        margin: 0 15px;
    }

    .workshop-placeholders {
        display:block;
        gap: 30px;
    }
    
    .placeholder-box {
        margin-bottom: 15px;
    }

    /* About page mobile styles */
    .about-hero {
        padding: 80px 0 40px 0;
    }

    .about-title {
        font-size: 36px;
        margin: 0 15px;
    }

    .about-content {
        padding: 40px 0;
    }

    .section-content {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 40px;
    }

    .section-text {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .team-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .member-photo {
        width: 100%;
        height: 300px;
    }

    .container-about {
        margin-top: 60px !important;
        margin: 0 0px;
        padding: 0 20px;
    }

    /* Guide page mobile styles */
    .guide-section {
        margin: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .section-content {
        flex-direction: column;
        gap: 20px;
    }

    .section-text-content {
        text-align: left;
    }

    .section-text {
        text-align: left;
    }

    .section-number {
        font-size: 80px;
        width: auto;
        order: 1;
    }

    .guide-section:nth-child(even) .section-number {
        order: 1;
    }

    .guide-section:nth-child(even) .section-content {
        order: 2;
    }

    .file-list {
        gap: 10px;
    }

    .file-item {
        padding: 15px;
        gap: 15px;
    }

    .cut-lines-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;

    }

    .cut-line-box {
        height: 150px;
    }

    /* Guide Page Styles */
    .container-guide {
        margin-top: 60px;
    }

    .guide-content {
        margin: 0 0px;
    }

    /* File dropdown mobile styles */
    .dropdown-content {
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-image {
        width: 100%;
        height: 120px;
    }

    .dropdown-text h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .dropdown-text p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .shop-search-bar {
        margin: 20px;
    }

    .follow-content{
        gap: 10px;
    }

    .follow-content p {
        font-size: 25px;
    }

    .follow-content a {
        font-size: 20px;
    }

    .follow-content img{
        width: 40px;
        height: 40px;
    }

    .content-grid {
        margin-top: 50px !important;
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }

    .footer-guide-page {
        margin-left: 0px;
    }

}

@media (max-width: 1110px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-guide-page {
        margin-left: 0px;
    }
    
}

@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .discover-work h2,
    .did-you-like h2 {
        font-size: 2rem;
    }
    
    .nav-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
} 

/* Buy Overlay Styles - Bottom Slide Modal */
.buy-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.buy-overlay.show {
    display: flex !important;
    opacity: 1;
}

body.modal-open {
    overflow: hidden;
}

.buy-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-background, #fef9e7);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.18);
    border: 4px solid #00AAE9;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 85vh; /* Increased height for better mobile display */
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    z-index: 100000;
    overflow-y: auto;
}

.buy-overlay.show .buy-modal {
    transform: translateY(0);
}

/* Mobile carousel styles */
.buy-image-gallery {
    position: relative;
    width: 100%;
    height: 60%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    width: 100%;
    position: relative;
    z-index: 10;
}

#buy-img {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 12px;
    background: #f3f3f3;
    object-fit: cover;
}

.carousel-nav {
    background: transparent;
    color: var(--color-primary, #00AAE9);
    border: 3px solid var(--color-primary, #00AAE9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--color-primary, #00AAE9);
    color: white;
    transform: scale(1.05);
}

.carousel-prev {
    order: 2;
}

.carousel-next {
    order: 3;
}

.carousel-dots {
    display: flex;
    gap: 6px;
    z-index: 10;
    order: 1;
    visibility: visible;
}

.carousel-arrows {
    display: flex;
    gap: 5px;
    order: 2;
    visibility: visible;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--color-primary, #00AAE9);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-primary, #00AAE9);
    border-color: var(--color-primary, #00AAE9);
}

/* Shop page specific carousel colors */
body.shop-page .carousel-nav {
    background: transparent;
    color: #B7CEA5;
    border-color: #B7CEA5;
}

body.shop-page .carousel-nav:hover {
    background: #B7CEA5;
    color: white;
}

body.shop-page .carousel-dot {
    border-color: #B7CEA5;
}

body.shop-page .carousel-dot.active {
    background: #B7CEA5;
    border-color: #B7CEA5;
}
.close-buy-overlay {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--color-textPrimary, #1E3A8A);
    cursor: pointer;
    z-index: 100001;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-buy-overlay:hover {
    background-color: rgba(0,0,0,0.1);
}
#buy-img {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    margin-top: 10px;
    background: #f3f3f3;
    display: block;
}
.buy-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    flex: 1;
}
  #buy-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-textPrimary, #1E3A8A);
    text-align: left;
    width: 100%;
    font-family: 'Satoshi', sans-serif;
    line-height: 1.2;
    display: block;
    visibility: visible;
  }
#buy-date {
    font-size: 0.98em;
    color: var(--color-textPrimary, #1E3A8A);
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
    font-family: 'Satoshi', sans-serif;
}
#buy-desc {
    font-size: 1.05em;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-textPrimary, #B7CEA5);
    text-align: left;
    width: 100%;
    font-family: 'Satoshi', sans-serif;
}
.buy-artist {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #00AAE9;
    margin: 8px 0 10px 0;
    text-align: left;
    width: 100%;
    font-family: 'Satoshi', sans-serif;
}

.buy-details {
    width: 100%;
}

.buy-format,
.buy-print {
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-textPrimary, #666);
    margin: 0 0 6px 0;
    text-align: left;
    font-family: 'Satoshi', sans-serif;
}

.buy-format strong,
.buy-print strong {
    color: var(--color-primary, #00AAE9);
    font-weight: 600;
}

  .buy-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary, #1E3A8A);
    margin: 15px 0 20px 0;
    text-align: left;
    width: 100%;
    font-family: 'Satoshi', sans-serif;
  }
.buy-modal .cta-btn {
    margin-top: 6px;
    padding: 10px 28px;
    font-size: 1em;
    align-self: flex-start;
    font-family: 'Satoshi', sans-serif;
}

@media (min-width: 900px) {

   
   

    #footer-logo-mobile {
        display: none;
    }
  .buy-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    width: 100%;
    height: 90vh; /* Increased to 90% of screen height */
    border-radius: 20px 20px 0 0;
    flex-direction: row;
    padding: 40px;
    align-items: center;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    transition: transform 0.5s ease-out;
  }
  
  .buy-overlay.show .buy-modal {
    transform: translateY(0);
  }
  
  .buy-image-gallery {
    flex: 0 0 60%; /* 3/5 of the screen */
    width: 60%;
    height: 100%;
    margin: 0 40px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #buy-img {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 12px;
    background: #f3f3f3;
    object-fit: cover;
  }
  
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--color-primary, #00AAE9);
    border: 3px solid var(--color-primary, #00AAE9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .carousel-nav:hover {
    background: var(--color-primary, #00AAE9);
    color: white;
    transform: translateY(-50%) scale(1.05);
  }
  
  .carousel-prev {
    left: 20px;
  }
  
  .carousel-next {
    right: 20px;
  }
  
  .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }
  
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--color-primary, #00AAE9);
    cursor: pointer;
    transition: all 0.3s ease;
}
  
  .carousel-dot.active {
    background: var(--color-primary, #00AAE9);
    border-color: var(--color-primary, #00AAE9);
  }
  
  /* Desktop shop page specific carousel colors */
  body.shop-page .carousel-nav {
    color: #B7CEA5;
    border-color: #B7CEA5;
  }
  
  body.shop-page .carousel-nav:hover {
    background: #B7CEA5;
    color: white;
  }
  
  body.shop-page .carousel-dot {
    border-color: #B7CEA5;
  }
  
  body.shop-page .carousel-dot.active {
    background: #B7CEA5;
    border-color: #B7CEA5;
  }
  
  .buy-info {
    flex: 0 0 40%; /* 2/5 of the screen */
    width: 40%;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
  }
  .close-buy-overlay {
    top: 18px;
    right: 24px;
    font-size: 2rem;
  }
  
  #buy-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--color-textPrimary, #B7CEA5);
  }
  
  .buy-details {
    margin-bottom: 30px;
  }
  
  .buy-format, .buy-print {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: var(--color-textPrimary, #B7CEA5);
  }
  
  .buy-artist {
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
  }
} 

.buy-btn {
    background: var(--color-primary, #1E3A8A);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 14px 36px;
    font-size: 1em;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 15px;
    transition: background 0.2s;
    text-decoration: none;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: inline-block;
}
.buy-btn:hover {
    background: var(--color-secondary, #E55A2B);
} 

.shop-search-bar {
  display: flex;
  justify-content: flex-start;
}
#shopSearchInput {
  width: 100%;
  max-width: 1000px;
  padding: 18px 28px;
  border: 2.5px solid var(--color-primary, #00aae9);
  border-radius: 30px;
  font-size: 1.25em;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 30px;
}
#shopSearchInput:focus {
  border-color: #FFD700;
} 

.guide-hero-custom {
  background: #fef9e7;
  padding: 60px 0 20px 0;
  text-align: center;
}
.guide-title-custom {
  font-size: 3.2rem;
  font-family: 'Satoshi Black', sans-serif;
  color: #FF6B35;
  margin-bottom: 40px;
  margin-top: 0;
}

.guide-section-custom {
    width: 100%;
  background: var(--color-background,);
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.guide-section-title-custom {
    line-height: 1.2;
  font-size: 3rem;
  font-family: 'Satoshi Black', sans-serif;
  color: var(--color-primary);
  margin-bottom: 18px;
  margin-top: 0;
}
.guide-text-custom {
  font-size: 1.18rem;
  color: var(--color-textPrimary, #1E3A8A);
  font-family: 'Satoshi', sans-serif;
  margin-bottom: 28px;
  line-height: 1.3;
  max-width: 800px;
}
.guide-placeholder-custom {
  width: 100%;
  min-height: 600px;
  border: 2.5px solid var(--color-primary);
  border-radius: 16px;
  margin-top: 10px;
  margin-bottom: 0;
}
.guide-placeholders-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  width: 100%;
}
.guide-placeholders-row .guide-placeholder-custom {
  flex: 1;
  min-height: 0;
  height: auto;
  background: transparent;
  border: 2.5px solid var(--color-primary);
  border-radius: 16px;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  display: block;
}
.guide-placeholders-row .guide-placeholder-custom img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
@media (max-width: 900px) {
  .guide-content-custom {
  }
  .guide-section-custom {
    padding: 5%;
  }
  .guide-title-custom {
    font-size: 2.1rem;
  }
  .guide-section-title-custom {
    font-size: 2rem;
    line-height: 1.2;
  }
  .guide-placeholder-custom {
    min-height: 500px;
  }
  #section1 .guide-placeholder-custom {
    background-size: contain !important;
    min-height: 350px;
  }
  #section2 .guide-placeholder-custom {
    background-size: contain !important;
    min-height: 300px;
  }
  #section3 ~ .guide-placeholder-custom,
  #section3 + .guide-placeholder-custom,
  #section4 .guide-placeholder-custom {
    background-size: cover !important;
  }
  .guide-placeholders-row {
    flex-direction: column;
    gap: 10px;
  }
  .guide-placeholders-row .guide-placeholder-custom {
    height: auto;
  }
} 

.guide-nav-mobile {
  display: none;
}
@media (max-width: 900px) {

    #header-logo-desktop {
        display: none;   
    }

  .guide-nav-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 100px;
    background: var(--color-background);
    border-radius: 10px;
    overflow: hidden;
  }
  #section2.guide-section-custom {
    background-size: contain;
  }

  #section3.guide-section-custom {
    padding:0;
    margin-top: 100px;
  }

  #section4.guide-section-custom {
    padding:0;
    margin-top: 100px;
  }
}
@media (min-width: 900px) {
  .guide-nav-mobile {
    display: none;
  }
  #section1.guide-section-custom {
    margin-top: 100px;
    padding: 0 24px 60px 24px;
  }
  #section2.guide-section-custom {
    margin-top: 100px;
    padding: 0 24px 60px 24px;
  }
  #section3.guide-section-custom {
    padding:0;
    margin-top: 100px;
  }
  #section4.guide-section-custom {
    margin-top: 100px;
  }
} 

.guide-logo-title-custom {
  margin-top: 10%;
  margin-bottom: 30px;
  margin-left: 3vw;
}
.guide-logo-title-custom img {
  max-width: 420px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 0 18px 0;
}


.guide-intro-row {
    width: 100%;
  display: flex;
  flex-direction: row;
  gap: 5%;
}
.guide-intro-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
}
.guide-intro-text h2 {
  font-size: 2rem;
  color: var(--color-primary, #1E3A8A);
  margin-bottom: 12px;
}
.guide-intro-text p {
  margin-top: 20px;
  font-size: 1.3rem;
  color: var(--color-textPrimary, #1E3A8A);
  margin-bottom: 18px;
  line-height: 1.3;
}
.guide-intro-image {
  width: 100%;
  height: 500px;
  background: #e5e5e5;
  border: 2.5px solid var(--color-primary, #1E3A8A);
  border-radius: 12px;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .guide-intro-row {
    flex-direction: column;
    gap: 24px;
  }
} 

.guide-main-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.guide-nav {
  display: none;
}
@media (min-width: 900px) {
  .guide-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: var(--color-background, #fff);
    border-right: 2px solid var(--color-primary, #1E3A8A);

    padding-top: 0;
    z-index: 900;
    gap: 0;
  }
  .guide-nav-item:first-child {
    margin-top: 85px;
  }
  .header {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .guide-nav-item {
    display: block;
    font-family: 'Satoshi Black', sans-serif;
    font-size: 1.15rem;
    color: var(--color-primary, #1E3A8A);
    border-bottom: 2px solid var(--color-primary, #1E3A8A);
    padding: 18px 18px 18px 32px;
    background: transparent;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    position: relative;
  }
  .guide-nav-item.active,
  .guide-nav-item:focus,
  .guide-nav-item:hover {
    background: var(--color-footerBg);
    color: #fff;
  }
  .guide-content-custom {
    margin-left: 300px;
    width: calc(100% - 300px);
    max-width: 100%;
    
  }

} 

@media (max-width: 900px) {
  .guide-main-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 100px;
    background: var(--color-background);
    overflow: hidden;
  }
  .guide-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--color-background);
    overflow: hidden;
    margin-bottom: 24px;
  }
  .guide-nav-item {
    display: block;
    font-family: 'Satoshi Black', sans-serif;
    font-size: 1.35rem;
    color: var(--color-primary);
    padding: 14px 14px 14px 24px;
    border-bottom: 2px solid var(--color-primary, #1E3A8A);
    background: var(--color-background);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    position: relative;
  }

  .guide-nav-item.active,
  .guide-nav-item:focus,
  .guide-nav-item:hover {
    background: var(--color-primary);
    color: var(--color-background);
  }
} 

.mobile-header-fixed {
  display: none;
}
@media (max-width: 1110px) {
  .mobile-header-fixed {
    display: flex;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .mobile-header-fixed.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
  .nav {
    display: none;
  }
}

/* Extra small screens - further optimize modal height */
@media (max-height: 600px) {
  .buy-modal {
    height: 80vh !important;
    padding: 10px !important;
  }
  
  #buy-img {
    height: 250px !important;
  }
  
  .buy-artist {
    margin: 6px 0 8px 0 !important;
  }
  
  #buy-desc {
    margin-bottom: 8px !important;
  }
  
  .buy-format,
  .buy-print {
    margin: 0 0 4px 0 !important;
  }
} 