/* ==========================================================================
   Navigation Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-inner {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-inner {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding .site-title-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--kintsugi-gold);
    letter-spacing: 0.1em;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-navigation .nav-menu a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ghost-white);
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--kintsugi-gold);
    transition: width 0.3s ease;
}

.main-navigation .nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-link {
    position: relative;
    padding: 0.5rem;
    color: var(--ghost-white);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--kintsugi-gold);
    color: var(--obsidian-void);
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--kintsugi-gold);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section - Triple Slideshow
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Single slideshow wrapper for hero */
.hero-single-slideshow-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-triple-slideshows {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    width: 100%;
    height: 100vh;
    padding: 5rem 2rem 2rem;
}

.hero-main-slide {
    position: relative;
    height: 100%;  /* ADDED: Ensures slideshow has proper height */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--kintsugi-gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-title.glitch {
    position: relative;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    20% { transform: skew(0.5deg); }
    40% { transform: skew(-0.5deg); }
    60% { transform: skew(0.3deg); }
    80% { transform: skew(-0.3deg); }
    100% { transform: skew(0deg); }
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--ghost-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Side Slideshows */
.hero-side-slides {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-side-slide {
    position: relative;
    flex: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.side-slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
    z-index: 10;
}

.label-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--kintsugi-gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--kintsugi-gold);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--kintsugi-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.5; top: 20px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-gold {
    background: linear-gradient(135deg, var(--kintsugi-gold) 0%, var(--kintsugi-gold-dark) 100%);
    color: var(--obsidian-void);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: var(--obsidian-void);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--kintsugi-gold);
    color: var(--kintsugi-gold);
}

.btn-outline:hover {
    background: var(--kintsugi-gold);
    color: var(--obsidian-void);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Slideshow Component
   ========================================================================== */
.straita-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Alternative: Use img tag with object-fit for better aspect ratio control */
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.4) 0%, rgba(75, 0, 130, 0.2) 100%);
}

.slideshow-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.slide-prev, .slide-next {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid var(--kintsugi-gold);
    color: var(--kintsugi-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slide-prev:hover, .slide-next:hover {
    background: var(--kintsugi-gold);
    color: var(--obsidian-void);
}

.slide-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(248, 248, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--kintsugi-gold);
    transform: scale(1.2);
}

/* ==========================================================================
   Store Section
   ========================================================================== */
.store-section {
    background: linear-gradient(180deg, var(--obsidian-void) 0%, var(--obsidian-deep) 100%);
}

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

.section-header.center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--kintsugi-gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ghost-muted);
    font-family: var(--font-body);
    font-size: 0.875rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--kintsugi-gold);
    border-color: var(--kintsugi-gold);
    color: var(--obsidian-void);
}

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

.product-card {
    background: linear-gradient(135deg, var(--obsidian-light) 0%, var(--obsidian-deep) 100%);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--kintsugi-gold);
    border: none;
    color: var(--obsidian-void);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0.8);
    transition: var(--transition-bounce);
}

.product-card:hover .btn-play {
    transform: scale(1);
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.25rem;
    z-index: 5;
}

.product-badge.sale {
    background: #ef4444;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-type {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--kintsugi-gold);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin: 0.5rem 0;
    color: var(--ghost-white);
}

.product-title a {
    color: inherit;
}

.product-title a:hover {
    color: var(--kintsugi-gold);
}

.product-meta {
    font-size: 0.75rem;
    color: var(--ghost-muted);
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kintsugi-gold);
}

.store-cta {
    text-align: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--kintsugi-gold) 0%, transparent 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--obsidian-void);
    border: 2px solid var(--kintsugi-gold);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-marker.active {
    background: var(--kintsugi-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--kintsugi-gold);
    font-weight: 600;
}

.timeline-content h4 {
    color: var(--ghost-white);
    font-size: 1.125rem;
    margin: 0.25rem 0 0.5rem;
}

.bio-card {
    background: linear-gradient(135deg, var(--obsidian-light) 0%, var(--obsidian-deep) 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.bio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.bio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--electric-indigo) 0%, var(--obsidian-void) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-initial {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--kintsugi-gold);
    opacity: 0.3;
}

.bio-text {
    padding: 2rem;
}

.bio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--kintsugi-gold);
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--kintsugi-gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ghost-muted);
    margin-top: 0.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background: linear-gradient(180deg, var(--obsidian-deep) 0%, var(--obsidian-void) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--obsidian-light) 0%, var(--obsidian-deep) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ghost-white);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ghost-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    color: var(--ghost-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--kintsugi-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--kintsugi-gold);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-highlight {
    width: 100%;
}

/* Formidable Forms in Contact Card */
.contact-card .frm_forms,
.contact-card .frm_form_fields {
    margin-top: 0;
}

.contact-card .frm_form_field {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-card .frm_form_field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ghost-muted);
    margin-bottom: 0.5rem;
}

.contact-card .frm_form_field input[type="text"],
.contact-card .frm_form_field input[type="email"],
.contact-card .frm_form_field input[type="tel"],
.contact-card .frm_form_field input[type="url"],
.contact-card .frm_form_field input[type="number"],
.contact-card .frm_form_field textarea,
.contact-card .frm_form_field select {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    color: var(--ghost-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-card .frm_form_field input:focus,
.contact-card .frm_form_field textarea:focus,
.contact-card .frm_form_field select:focus {
    outline: none;
    border-color: var(--kintsugi-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.contact-card .frm_form_field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-card .frm_submit {
    margin-top: 1rem;
}

.contact-card .frm_submit button,
.contact-card .frm_submit input[type="submit"] {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, var(--kintsugi-gold) 0%, var(--kintsugi-gold-dark) 100%);
    color: var(--obsidian-void);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.contact-card .frm_submit button:hover,
.contact-card .frm_submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.contact-card .frm_error,
.contact-card .frm_error_style {
    color: #fca5a5;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-card .frm_message,
.contact-card .frm_message p {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-card .frm_error_style {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* Formidable checkbox and radio styling */
.contact-card .frm_checkbox label,
.contact-card .frm_radio label {
    text-transform: none;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--ghost-white);
}

.contact-card .frm_checkbox input[type="checkbox"],
.contact-card .frm_radio input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
}

.social-card,
.newsletter-card,
.email-card {
    background: linear-gradient(135deg, var(--obsidian-light) 0%, var(--obsidian-deep) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 1.5rem;
}

.social-card h3,
.newsletter-card h3 {
    font-family: var(--font-heading);
    color: var(--ghost-white);
    margin-bottom: 0.5rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 0.5rem;
    color: var(--ghost-white);
    transition: var(--transition-smooth);
}

.social-link-card:hover {
    background: var(--kintsugi-gold);
    color: var(--obsidian-void);
}

.social-link-card span {
    font-size: 0.75rem;
    font-weight: 600;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    color: var(--ghost-white);
}

.newsletter-note {
    font-size: 0.75rem;
    color: var(--ghost-muted);
    margin-top: 0.5rem;
}

/* Formidable Forms in Newsletter Card */
.newsletter-card .frm_forms,
.newsletter-card .frm_form_fields {
    margin-top: 1rem;
}

.newsletter-card .frm_form_field {
    margin-bottom: 0.75rem;
}

.newsletter-card .frm_form_field input[type="text"],
.newsletter-card .frm_form_field input[type="email"],
.newsletter-card .frm_form_field input[type="tel"],
.newsletter-card .frm_form_field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    color: var(--ghost-white);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.newsletter-card .frm_form_field input:focus,
.newsletter-card .frm_form_field textarea:focus {
    outline: none;
    border-color: var(--kintsugi-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.newsletter-card .frm_form_field label {
    color: var(--ghost-white);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.newsletter-card .frm_submit {
    margin-top: 1rem;
}

.newsletter-card .frm_submit button,
.newsletter-card .frm_submit input[type="submit"] {
    width: 100%;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--kintsugi-gold) 0%, var(--kintsugi-gold-dark) 100%);
    color: var(--obsidian-void);
    border: none;
    border-radius: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.newsletter-card .frm_submit button:hover,
.newsletter-card .frm_submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.newsletter-card .frm_error,
.newsletter-card .frm_message {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.newsletter-card .frm_error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
}

.newsletter-card .frm_message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.email-card .label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--kintsugi-gold);
}

.email-link {
    display: block;
    font-size: 1.125rem;
    margin-top: 0.25rem;
}

/* Social Share Section */
.social-share-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.social-share-section h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--ghost-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.social-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--kintsugi-gold);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.share-btn:hover {
    background: var(--kintsugi-gold);
    color: var(--obsidian-void);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--obsidian-void);
    position: relative;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--kintsugi-gold);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--ghost-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

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

.footer-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--kintsugi-gold);
    transition: var(--transition-smooth);
}

.footer-social .social-link:hover {
    background: var(--kintsugi-gold);
    color: var(--obsidian-void);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--ghost-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

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

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

.footer-menu a {
    color: var(--ghost-muted);
    font-size: 0.875rem;
}

.footer-menu a:hover {
    color: var(--kintsugi-gold);
}

.footer-newsletter .newsletter-form {
    margin-top: 1rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.75rem;
    color: var(--ghost-muted);
}

.theme-credit {
    font-size: 0.75rem;
    color: var(--kintsugi-gold);
    font-style: italic;
}

/* Music Visualizer */
.music-visualizer {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.visualizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}

.visualizer-bars span {
    width: 4px;
    background: var(--kintsugi-gold);
    border-radius: 2px;
    animation: visualize 0.8s ease infinite;
}

.visualizer-bars span:nth-child(1) { animation-delay: 0s; height: 10px; }
.visualizer-bars span:nth-child(2) { animation-delay: 0.1s; height: 20px; }
.visualizer-bars span:nth-child(3) { animation-delay: 0.2s; height: 15px; }
.visualizer-bars span:nth-child(4) { animation-delay: 0.3s; height: 25px; }
.visualizer-bars span:nth-child(5) { animation-delay: 0.4s; height: 12px; }

@keyframes visualize {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-triple-slideshows {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 992px) {
    .hero-triple-slideshows {
        grid-template-columns: 1fr;
        grid-template-rows: 60vh auto;
    }

    .hero-side-slides {
        flex-direction: row;
    }

    .hero-side-slide {
        height: 200px;
    }

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--obsidian-void);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .main-navigation .nav-menu.active {
        display: flex;
    }

    .main-navigation .nav-menu li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .main-navigation .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .hero-triple-slideshows {
        padding: 4rem 1rem 1rem;
    }

    .hero-side-slides {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 2rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .product-filters {
        flex-wrap: wrap;
    }

    .bio-stats {
        grid-template-columns: 1fr;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   WooCommerce Single Product
   ========================================================================== */
.single-product-page {
    padding-top: 100px;
}

.product-hero {
    padding: 3rem 0;
}

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

.product-gallery .main-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--obsidian-light);
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--kintsugi-gold);
    color: var(--kintsugi-gold);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.preview-play-btn:hover {
    background: var(--kintsugi-gold);
    color: var(--obsidian-void);
}

.gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.gallery-thumbs .thumb.active,
.gallery-thumbs .thumb:hover {
    border-color: var(--kintsugi-gold);
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details .product-breadcrumb {
    margin-bottom: 1rem;
}

.product-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--kintsugi-gold);
    color: var(--kintsugi-gold);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.product-details .product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-meta-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-meta-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ghost-muted);
    font-size: 0.875rem;
}

.product-meta-info svg {
    color: var(--kintsugi-gold);
}

.product-price-box {
    background: linear-gradient(135deg, var(--obsidian-light) 0%, var(--obsidian-deep) 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 1.5rem;
}

.product-price-box .price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ghost-muted);
    margin-bottom: 0.25rem;
}

.product-price-box .price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--kintsugi-gold);
}

.product-short-desc {
    margin-bottom: 1.5rem;
    color: var(--ghost-muted);
    line-height: 1.8;
}

.product-actions .single_add_to_cart_button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--kintsugi-gold) 0%, var(--kintsugi-gold-dark) 100%);
    border: none;
    color: var(--obsidian-void);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.product-actions .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.product-share span {
    color: var(--ghost-muted);
    font-size: 0.875rem;
}

.product-share a {
    color: var(--ghost-muted);
    transition: var(--transition-smooth);
}

.product-share a:hover {
    color: var(--kintsugi-gold);
}

/* Shop Page */
.shop-header {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--obsidian-void) 0%, var(--obsidian-deep) 100%);
}

.shop-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.shop-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.post-card {
    background: linear-gradient(135deg, var(--obsidian-light) 0%, var(--obsidian-deep) 100%);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.post-category {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--kintsugi-gold);
}

.post-date {
    font-size: 0.75rem;
    color: var(--ghost-muted);
}

.post-card .post-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.post-card .post-title a {
    color: var(--ghost-white);
}

.post-card .post-title a:hover {
    color: var(--kintsugi-gold);
}

.post-excerpt {
    color: var(--ghost-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--kintsugi-gold);
    font-size: 0.875rem;
    font-weight: 600;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0.5rem;
    color: var(--ghost-white);
    transition: var(--transition-smooth);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--kintsugi-gold);
    color: var(--obsidian-void);
}

/* ==========================================================================
   Store Placeholder (No WooCommerce)
   ========================================================================== */
.store-placeholder {
    text-align: center;
    padding: 3rem 0;
}

.store-coming-soon {
    font-size: 1.25rem;
    color: var(--ghost-muted);
    margin-bottom: 2rem;
}

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

.placeholder-card {
    background: linear-gradient(135deg, var(--obsidian-light) 0%, var(--obsidian-deep) 100%);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.placeholder-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(75, 0, 130, 0.05) 100%);
}

.placeholder-image span {
    font-size: 3rem;
    color: var(--kintsugi-gold);
    opacity: 0.3;
}

.placeholder-text {
    height: 80px;
    padding: 1rem;
    background: linear-gradient(90deg,
        rgba(212, 175, 55, 0.05) 0%,
        rgba(212, 175, 55, 0.1) 50%,
        rgba(212, 175, 55, 0.05) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

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

/* ==========================================================================
   Media Preview Player Modal
   ========================================================================== */
.media-preview-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.preview-player-inner {
    background: linear-gradient(135deg, var(--obsidian-light) 0%, var(--obsidian-deep) 100%);
    border: 1px solid var(--kintsugi-gold);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.preview-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--ghost-muted);
    border-radius: 50%;
    color: var(--ghost-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-close:hover {
    background: var(--kintsugi-gold);
    border-color: var(--kintsugi-gold);
    color: var(--obsidian-void);
}

.preview-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--kintsugi-gold);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.preview-media-container {
    background: var(--obsidian-void);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.preview-media-container audio {
    width: 100%;
    outline: none;
}

.preview-media-container video {
    width: 100%;
    max-height: 400px;
    outline: none;
}

.preview-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--ghost-muted);
    font-style: italic;
}

body.preview-playing {
    overflow: hidden;
}

/* Product Image Placeholder */
.product-image-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--obsidian-light) 0%, rgba(75, 0, 130, 0.1) 100%);
}

.product-image-placeholder span {
    font-size: 4rem;
    opacity: 0.3;
}

/* Play Preview Button */
.btn-play-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--kintsugi-gold);
    border: none;
    color: var(--obsidian-void);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-play-preview:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

/* Price Styling */
.price {
    font-family: var(--font-heading);
    color: var(--kintsugi-gold);
}

.price.free {
    color: #4ade80;
}

.price.on-sale del {
    color: var(--ghost-muted);
    font-size: 0.875em;
    margin-right: 0.5rem;
}

.price.on-sale ins {
    text-decoration: none;
    color: #4ade80;
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */
.single-product-page {
    padding: var(--section-padding) 0;
}

.product-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .product-single-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.product-single-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-single-image .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.product-image-placeholder.large {
    height: 400px;
    background: linear-gradient(135deg, var(--obsidian-light) 0%, rgba(75, 0, 130, 0.2) 100%);
}

.product-image-placeholder.large span {
    font-size: 6rem;
}

.product-type-label {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--kintsugi-gold);
    border-radius: 2rem;
    color: var(--kintsugi-gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.product-single-info .product-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ghost-white);
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.product-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ghost-muted);
}

.meta-value {
    font-family: var(--font-heading);
    color: var(--ghost-white);
}

.product-preview-section {
    background: var(--obsidian-light);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.product-preview-section h3 {
    font-size: 1rem;
    color: var(--kintsugi-gold);
    margin-bottom: 1rem;
}

.preview-player-inline audio,
.preview-player-inline video {
    width: 100%;
    border-radius: 0.5rem;
}

.preview-disclaimer {
    font-size: 0.875rem;
    color: var(--ghost-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

.product-description {
    color: var(--ghost-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-actions {
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
}

.purchase-note {
    font-size: 0.875rem;
    color: var(--ghost-muted);
    margin-top: 1rem;
}

.related-products {
    background: var(--obsidian-deep);
}

/* ==========================================================================
   Featured Slideshow Sections (Slideshows 2 & 3)
   ========================================================================== */
.featured-slideshow-section {
    padding: 6rem 0;
    background: var(--obsidian-void);
    position: relative;
    overflow: hidden;
}

.featured-slideshow-section:nth-child(even) {
    background: var(--obsidian-deep);
}

.featured-slideshow-wrapper {
    max-width: 1400px;
    margin: 3rem auto 0;
    height: 600px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.featured-slideshow-wrapper .straita-slideshow {
    height: 100%;
}

.featured-slideshow-wrapper .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
    z-index: 10;
}

.featured-slideshow-wrapper .slide-title {
    font-size: 2.5rem;
    color: var(--kintsugi-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.featured-slideshow-wrapper .slide-caption {
    font-size: 1.125rem;
    color: var(--ghost-white);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-slideshow-wrapper {
        height: 500px;
    }

    .featured-slideshow-wrapper .slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .featured-slideshow-section {
        padding: 4rem 0;
    }

    .featured-slideshow-wrapper {
        height: 400px;
        margin: 2rem auto 0;
    }

    .featured-slideshow-wrapper .slide-content {
        padding: 2rem;
    }

    .featured-slideshow-wrapper .slide-title {
        font-size: 1.5rem;
    }

    .featured-slideshow-wrapper .slide-caption {
        font-size: 1rem;
    }
}

