:root {
    --primary-bg: #000000;
    --secondary-bg: #0a0a0a;
    --accent-color: #dc143c;
    --accent-glow: rgba(220, 20, 60, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #888888;
    --border-color: #333333;
    --gradient-1: #ffffff;
    --gradient-2: #cccccc;
    --gradient-3: #888888;
    --smoke-gray: #1a1a1a;
    --blood-red: #dc143c;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 62px;
    width: auto;
    display: block;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: grayscale(50%);
    z-index: 1;
    will-change: transform;
}

/* Main hero gets a more prominent image */
.hero .hero-bg-image {
    opacity: 0.5;
    filter: grayscale(20%);
}

.animated-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.015) 0%, transparent 50%);
    animation: gradientShift 25s ease-in-out infinite;
    z-index: 3;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5%, 5%) rotate(120deg);
    }
    66% {
        transform: translate(-5%, 3%) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Pirata One', cursive;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--text-primary);
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    opacity: 0;
    transition: var(--transition-medium);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button span,
.cta-button svg {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.cta-button:hover span,
.cta-button:hover svg {
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 5px 20px var(--accent-glow);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item-category {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-medium);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-item-category {
    transform: translateY(0);
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background: var(--secondary-bg);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-medium);
}

.stat-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px var(--accent-glow);
    transform: translateX(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-medium);
}

.contact-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px var(--accent-glow);
    transform: translateY(-5px);
}

.contact-item svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-tertiary);
    border-top: 1px solid var(--border-color);
}

/* Image Overlay Modal */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
}

.image-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.close-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.close-overlay:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.prev-arrow {
    left: 2rem;
}

.next-arrow {
    right: 2rem;
}

.overlay-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overlay-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.overlay-info {
    text-align: center;
}

.overlay-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.overlay-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-medium);
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.error-message {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

/* Admin Dashboard */
.admin-dashboard {
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
}

.dashboard-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logout-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.logout-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.upload-section {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.upload-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.upload-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.file-input-wrapper {
    grid-column: 1 / -1;
    position: relative;
    padding: 3rem;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-input-wrapper:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.preview-image {
    max-width: 300px;
    max-height: 300px;
    margin: 1rem auto;
    border-radius: 10px;
}

.manage-section {
    max-width: 1400px;
    margin: 0 auto;
}

.manage-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.manage-item {
    position: relative;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: move;
    transition: var(--transition-fast);
}

.manage-item.drag-over {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.05);
}

.drag-handle {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    color: var(--text-secondary);
    font-size: 1rem;
    z-index: 10;
    cursor: grab;
}

.manage-item:active .drag-handle {
    cursor: grabbing;
}

.manage-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.manage-item-info {
    padding: 1rem;
}

.manage-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.manage-item-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.manage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    color: var(--accent-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.tags-selector {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.tag-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.tag-checkbox:hover {
    color: var(--text-primary);
}

.tag-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.delete-btn {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.delete-btn:hover {
    background: var(--accent-color);
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-medium);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .menu-toggle {
        display: flex;
    }

    /* Book Now pill in mobile menu — full-width, centered */
    .nav-link.nav-cta {
        text-align: center;
        padding: 0.65rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

    .upload-form {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .prev-arrow {
        left: 1rem;
    }

    .next-arrow {
        right: 1rem;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .overlay-content {
        padding: 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success Message */
.success-message {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Active Nav Link */
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    width: 100%;
    background: var(--accent-color);
}

/* Book Now CTA pill in nav */
.nav-link.nav-cta {
    background: var(--accent-color);
    color: #fff !important;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: #b01030;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.4);
}

.nav-link.nav-cta.active {
    background: #8b0020;
    box-shadow: 0 0 0 2px rgba(220, 20, 60, 0.4);
}

/* Admin link — hidden in nav, accessible from footer */
.admin-footer-dot {
    opacity: 0.12;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: opacity 0.2s;
    margin-left: 0.5rem;
}

.admin-footer-dot:hover {
    opacity: 0.4;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.page-title {
    font-family: 'Pirata One', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-title-line:nth-child(1) { animation-delay: 0.25s; }

.page-title-line:nth-child(2) {
    animation-delay: 0.45s;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Page */
.about-page-section {
    padding: 4rem 2rem 8rem;
}

.about-page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.bio-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

.bio-image-wrapper {
    position: relative;
}

.bio-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.bio-image:hover img {
    filter: grayscale(0%);
}

.bio-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.bio-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 6rem 0;
}

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

.stat-card {
    padding: 3rem 2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-medium);
}

.stat-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px var(--accent-glow);
    transform: translateY(-10px);
}

.stat-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.stat-card .stat-number {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.stat-card .stat-description {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.philosophy-section {
    margin-bottom: 6rem;
}

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

.philosophy-card {
    padding: 2.5rem;
    background: var(--secondary-bg);
    border-left: 3px solid var(--accent-color);
    border-radius: 10px;
    transition: var(--transition-medium);
}

.philosophy-card:hover {
    background: var(--smoke-gray);
    transform: translateX(10px);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.specialties-section {
    margin-bottom: 6rem;
}

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

.specialty-item {
    padding: 2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-medium);
}

.specialty-item:hover {
    border-color: var(--accent-color);
}

.specialty-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.specialty-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.specialty-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--secondary-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.page-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.page-cta p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.page-cta .cta-button {
    opacity: 1;
    animation: none;
}

/* Contact Page */
.contact-page-section {
    padding: 4rem 2rem 8rem;
}

.contact-page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-intro p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

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

.contact-card {
    padding: 3rem 2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px var(--accent-glow);
    transform: translateY(-10px);
}

.contact-card-icon {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-card-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-card-description {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-section {
    margin-bottom: 6rem;
}

.location-content {
    margin-top: 2rem;
}

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

.location-detail {
    display: flex;
    gap: 1.5rem;
}

.location-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.location-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.location-detail p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.location-detail em {
    color: var(--text-tertiary);
    font-style: italic;
}

.faq-section {
    margin-bottom: 6rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--secondary-bg);
    border-left: 3px solid var(--accent-color);
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Enhanced Footer */
.footer-main {
    padding: 5rem 2rem 2rem;
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    height: 90px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.footer-column h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-column p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 2rem;
    background: var(--secondary-bg);
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    padding: 2.5rem;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--border-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Booking Form */
.booking-form-section {
    margin-bottom: 6rem;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.booking-form .form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form .style-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.booking-form .style-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.booking-form .style-option:hover {
    color: var(--text-primary);
}

.booking-form .style-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.booking-form .submit-btn {
    grid-column: 1 / -1;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 1.2rem 2rem;
}

.booking-form .submit-btn:hover {
    background: #b01030;
}

.form-success {
    grid-column: 1 / -1;
    padding: 1.5rem;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.4);
    border-radius: 10px;
    color: #6fdc8c;
    text-align: center;
    font-size: 1rem;
    display: none;
}

.form-success.active {
    display: block;
}

/* FAQ Accordion */
.faq-item {
    cursor: pointer;
    transition: var(--transition-medium);
    overflow: hidden;
}

.faq-item:hover {
    background: var(--smoke-gray);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    margin-bottom: 0;
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-top: 1rem;
}

/* Booking Process Section */
.process-section {
    margin-bottom: 6rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--border-color), var(--accent-color));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-bg);
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-medium);
}

.step-number svg {
    color: var(--accent-color);
}

.process-step:hover .step-number {
    background: var(--accent-color);
    box-shadow: 0 5px 25px var(--accent-glow);
}

.process-step:hover .step-number svg {
    color: var(--text-primary);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
    z-index: 900;
    pointer-events: none;
    box-shadow: 0 5px 20px var(--accent-glow);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: #b01030;
    transform: translateY(-3px);
}

.back-to-top.visible:hover {
    transform: translateY(-3px);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* Skip Navigation */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* View Transitions */
@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: fadeOut 0.25s ease-out;
}

::view-transition-new(root) {
    animation: fadeIn 0.25s ease-in;
}

/* Responsive for new pages */
@media (max-width: 968px) {
    .bio-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-grid,
    .philosophy-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form .form-group.full-width {
        grid-column: 1;
    }

    .booking-form .submit-btn {
        grid-column: 1;
    }

    .form-success {
        grid-column: 1;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand .logo {
        height: 60px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   GLOBAL ENHANCED ANIMATIONS
   ========================================== */

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blood-red), #ff4d6d);
    z-index: 9999;
    width: 0%;
    box-shadow: 0 0 12px var(--accent-glow);
    transition: width 0.08s linear;
}

/* Film Grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9997;
    animation: grainShift 0.45s steps(1) infinite;
}

@keyframes grainShift {
    0%   { background-position: 0% 0%; }
    25%  { background-position: 50% 15%; }
    50%  { background-position: 20% 80%; }
    75%  { background-position: 80% 40%; }
    100% { background-position: 0% 0%; }
}

/* Additional reveal variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.93);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.animated,
.reveal-right.animated,
.reveal-scale.animated {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Float */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* Pulse glow */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px var(--accent-glow); }
    50%       { box-shadow: 0 0 35px rgba(220, 20, 60, 0.65); }
}

/* ==========================================
   SHOP PAGE
   ========================================== */

/* Shop Hero */
.shop-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.shop-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.shop-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.55) saturate(0.85);
    will-change: transform;
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.75) 100%),
        linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 60%);
}

.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shop-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.shop-hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.shop-hero-title {
    font-family: 'Pirata One', cursive;
    font-size: clamp(3.2rem, 11vw, 9rem);
    font-weight: 400;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 0.05em;
    margin-bottom: 2rem;
}

.shop-hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.shop-hero-title span:nth-child(1) { animation-delay: 0.35s; }
.shop-hero-title span.accent-text {
    animation-delay: 0.55s;
    background: linear-gradient(135deg, var(--accent-color), #ff6680, var(--accent-color));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.55s,
               accentPan 4s linear infinite 1.5s;
    filter: drop-shadow(0 0 40px rgba(220, 20, 60, 0.4));
}
.shop-hero-title span:nth-child(3) { animation-delay: 0.75s; }

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

.shop-hero-sub {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.1s;
    margin-bottom: 3rem;
}

.shop-hero-cta {
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.4s;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Collection Intro */
.collection-intro-section {
    padding: 8rem 2rem;
    background: var(--secondary-bg);
}

.collection-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section entry lines */
.section-entry {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-entry-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-entry-line.right {
    background: linear-gradient(270deg, var(--accent-color), transparent);
    transform-origin: right;
}

.section-entry.animated .section-entry-line {
    transform: scaleX(1);
}

.section-entry-badge {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    white-space: nowrap;
    padding: 0.3rem 1rem;
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
}

.collection-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: center;
}

.collection-intro-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-top: 1.5rem;
}

.collection-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.5rem 2rem;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
    transition: var(--transition-medium);
}

.intro-stat:hover {
    transform: translateX(6px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.intro-stat-num {
    font-family: 'Pirata One', cursive;
    font-size: 2rem;
    color: var(--text-primary);
}

.intro-stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

/* Category Preview */
.category-preview-section {
    padding: 8rem 2rem;
    background: var(--primary-bg);
}

.category-preview-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.category-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.category-card {
    position: relative;
    height: 440px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
    text-decoration: none;
    display: block;
}

.category-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(220, 20, 60, 0.2);
}

.category-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.55);
    transition: transform var(--transition-slow), filter var(--transition-slow);
}

.category-card:hover .category-card-img {
    transform: scale(1.08);
    filter: grayscale(10%) brightness(0.45);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

.category-icon-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    z-index: 2;
}

.category-card:hover .category-icon-wrap {
    opacity: 0;
    transform: translateY(-16px);
}

.category-icon {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(220, 20, 60, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    animation: pulseGlow 3s ease-in-out infinite;
}

.category-card-label {
    font-family: 'Pirata One', cursive;
    font-size: 2.4rem;
    color: var(--text-primary);
}

.category-card-sub {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.category-card-hover {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.6) 60%, rgba(220,20,60,0.08) 100%);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    z-index: 3;
}

.category-card:hover .category-card-hover {
    opacity: 1;
    transform: translateY(0);
}

.category-card-hover h3 {
    font-family: 'Pirata One', cursive;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.category-card-hover p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    background: rgba(220, 20, 60, 0.15);
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    width: fit-content;
}

/* Store Section */
.store-section {
    padding: 8rem 2rem 10rem;
    background: var(--secondary-bg);
}

.store-container {
    max-width: 1100px;
    margin: 0 auto;
}

.store-header {
    text-align: center;
    margin-bottom: 4rem;
}

.store-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* Ecwid Setup Panel */
.ecwid-setup-panel {
    background: var(--primary-bg);
    border: 1px solid rgba(220, 20, 60, 0.4);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
}

.ecwid-setup-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    background-size: 200%;
    animation: scanLine 2.5s linear infinite;
}

@keyframes scanLine {
    0%   { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.ecwid-setup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ecwid-setup-title::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: pulseGlow 1.5s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-block;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.75rem 0;
}

.setup-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.1rem 1.5rem;
    background: var(--secondary-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-fast);
}

.setup-step:hover { border-color: rgba(220, 20, 60, 0.3); }

.step-num {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.setup-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.setup-step p strong { color: var(--text-primary); }

.setup-step code {
    background: rgba(220, 20, 60, 0.12);
    border: 1px solid rgba(220, 20, 60, 0.25);
    border-radius: 4px;
    padding: 0.1em 0.45em;
    font-family: monospace;
    font-size: 0.88em;
    color: #ff7090;
}

.setup-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition-medium);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.setup-cta-link:hover {
    background: #b01030;
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 8px 25px var(--accent-glow);
}

/* Placeholder products grid */
.product-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 0.35;
    pointer-events: none;
    filter: blur(1.5px);
}

.product-placeholder-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.product-placeholder-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.product-placeholder-info {
    padding: 1.25rem 1.5rem;
}

.product-placeholder-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.product-placeholder-info .price {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

/* Brand Promise */
.brand-promise-section {
    padding: 8rem 2rem;
    background: var(--primary-bg);
}

.brand-promise-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.promise-card {
    padding: 3rem 2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.promise-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.promise-card:hover {
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(220,20,60,0.1);
}

.promise-card:hover::after { transform: scaleX(1); }

.promise-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(220, 20, 60, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    transition: var(--transition-medium);
}

.promise-card:hover .promise-icon {
    background: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 0 30px var(--accent-glow);
    border-color: var(--accent-color);
}

.promise-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.promise-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Shop → Studio CTA */
.shop-studio-cta {
    padding: 8rem 2rem;
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
}

.shop-studio-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.shop-studio-cta h2 {
    font-family: 'Pirata One', cursive;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-studio-cta p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.shop-studio-cta .cta-button {
    opacity: 1;
    animation: none;
}

/* Google Reviews Section */
.reviews-section .testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-medium);
    margin-bottom: 2rem;
}

.google-review-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 5px 25px rgba(66, 133, 244, 0.25);
    transform: translateY(-2px);
}

.google-setup-notice {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(220, 20, 60, 0.25);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    text-align: center;
    line-height: 1.6;
}

.google-setup-notice code {
    background: rgba(220, 20, 60, 0.15);
    border-radius: 3px;
    padding: 0.1em 0.4em;
    font-family: monospace;
    color: #ff7090;
    font-size: 0.9em;
}

/* Google Calendar booking embed */
.gcal-embed-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: var(--secondary-bg);
}

/* Responsive */
@media (max-width: 968px) {
    .collection-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .category-preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .category-card { height: 340px; }

    .product-placeholder-grid {
        grid-template-columns: 1fr 1fr;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .product-placeholder-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero-title {
        font-size: clamp(2.6rem, 14vw, 4rem);
    }

    .shop-hero-eyebrow {
        letter-spacing: 3px;
        font-size: 0.65rem;
    }

    .category-preview-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .ecwid-setup-panel {
        padding: 2rem 1.5rem;
    }

    .gcal-embed-wrapper iframe {
        height: 520px !important;
    }
}

/* ==========================================
   FLOATING BOOKING WIDGET
   ========================================== */

.booking-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9996;
}

.booking-widget-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 2px solid rgba(220, 20, 60, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.5), 0 0 0 0 rgba(220, 20, 60, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    animation: widgetPulse 3s ease-in-out infinite;
}

@keyframes widgetPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(220,20,60,0.5), 0 0 0 0 rgba(220,20,60,0.3); }
    50% { box-shadow: 0 4px 24px rgba(220,20,60,0.5), 0 0 0 8px rgba(220,20,60,0); }
}

.booking-widget-btn:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 32px rgba(220, 20, 60, 0.7);
}

.booking-widget-btn.open {
    background: #1a1a1a;
    border-color: var(--border-color);
    animation: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.booking-widget-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    background: #0d0d0d;
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    width: 270px;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.booking-widget-popup.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

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

.booking-widget-header strong {
    font-family: 'Pirata One', cursive;
    font-size: 1.15rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.booking-widget-header button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.booking-widget-header button:hover { color: var(--text-primary); }

.booking-widget-hours {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.25rem;
}

.booking-widget-book {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: #fff;
    padding: 0.8rem 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.65rem;
    transition: background 0.2s, transform 0.2s;
}

.booking-widget-book:hover {
    background: #b01030;
    transform: translateX(3px);
    color: #fff;
}

.booking-widget-email {
    display: block;
    text-align: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.booking-widget-email:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* ==========================================================================
   Hero booking CTA (homepage)
   ========================================================================== */
.hero-cta {
    margin-top: 0.5rem;
}

/* Outline variant of the primary button (used for secondary actions) */
.cta-button.cta-button--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--text-primary);
}

.cta-button.cta-button--outline span,
.cta-button.cta-button--outline svg {
    color: var(--text-primary);
}

/* ==========================================================================
   Homepage shop teaser (small, secondary — tattoos stay the focus)
   ========================================================================== */
.home-shop-teaser {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 4.5rem 2rem;
}

.home-shop-teaser-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.home-shop-teaser-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.home-shop-teaser-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.home-shop-teaser-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 42ch;
}

/* The teaser button sits below the fold, so reveal with the section
   rather than waiting on the hero's load animation. */
.home-shop-teaser .cta-button {
    opacity: 1;
    animation: none;
}

.home-shop-teaser-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.home-shop-thumb {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.home-shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-shop-thumb:hover img {
    transform: scale(1.06);
}

/* ==========================================================================
   Shop page — slim collection intro + product showcase
   ========================================================================== */
.shop-collection {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.shop-collection-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.shop-collection-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.shop-collection-head p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1rem;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.shop-product-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.shop-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.shop-product-media {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
}

.shop-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.shop-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    padding: 1.25rem;
}

.shop-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.shop-product-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.05rem;
}

.shop-product-buy {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.shop-product-buy:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.shop-collection-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 3rem;
}

.shop-collection-note a {
    color: var(--accent-color);
    text-decoration: none;
}

.shop-collection-note a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Contact page — secondary "prefer another way" line under the calendar
   ========================================================================== */
.booking-alt {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1.75rem;
}

.booking-alt a {
    color: var(--accent-color);
    text-decoration: none;
}

.booking-alt a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Responsive — teaser + product grid
   ========================================================================== */
@media (max-width: 1100px) {
    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .home-shop-teaser-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-shop-teaser {
        padding: 3.5rem 1.5rem;
    }
    .shop-collection {
        padding: 3.5rem 1.5rem 3rem;
    }
}

@media (max-width: 460px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

