/* 
   Painted Goddess Tattoos Website Styles
   Ed Hardy-Inspired Edgy Pin-Up Style
   Bold, Tattoo Culture Aesthetic with Feminine Touches
   Font: Fraktur (UnifrakturMaguntia) for branding
*/

:root {
    --primary-pink: #ff1493;       /* Hot Pink - Bold Pin-Up Pink */
    --dark-pink: #ff0080;          /* Deep Pink */
    --accent-gold: #ffd700;        /* Gold/Amber - Ed Hardy Style */
    --accent-red: #dc143c;         /* Crimson Red */
    --accent-blue: #1e90ff;        /* Dodger Blue - Tattoo Blue */
    --text-dark: #000000;          /* Pure Black */
    --text-grey: #333333;          /* Dark Grey */
    --bg-black: #0a0a0a;           /* Deep Black Background */
    --bg-dark: #1a1a1a;            /* Dark Background */
    --bg-grey: #2a2a2a;            /* Dark Grey */
    --white: #ffffff;               /* Pure White */
    --border-gold: #ffd700;        /* Gold Border */
    --border-pink: #ff1493;        /* Pink Border */
}

/* Global Styles */
body {
    font-family: 'Copperplate', 'Copperplate Gothic Light', 'Copperplate Gothic Bold', serif;
    color: var(--white);
    background-color: var(--bg-black);
    overflow-x: hidden;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(26, 26, 26, 0.3) 10px,
            rgba(26, 26, 26, 0.3) 20px
        );
    /* Mobile optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Fraktur Font ONLY for Navbar Logo */
.logo-text {
    font-family: 'UnifrakturMaguntia', serif;
    font-weight: 400;
    text-shadow: 
        2px 2px 0 var(--accent-gold),
        0 0 15px rgba(255, 20, 147, 0.8);
    letter-spacing: 3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Copperplate', 'Copperplate Gothic Bold', serif;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 var(--text-dark);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-pink) !important;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

.bg-primary {
    background-color: var(--primary-pink) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-red) 100%);
    border: 3px solid var(--accent-gold);
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 0;
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 4px 15px rgba(255, 20, 147, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-pink) 100%);
    border-color: var(--primary-pink);
    box-shadow: 
        0 6px 25px rgba(255, 20, 147, 0.8),
        inset 0 0 30px rgba(255, 215, 0, 0.4);
    transform: translateY(-3px) scale(1.05);
    color: var(--white);
}

.btn-outline-primary {
    color: var(--white);
    border: 3px solid var(--accent-gold);
    border-radius: 0;
    padding: 15px 35px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: left 0.3s;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    left: 0;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Header Styles */
header {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 20, 147, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 20px 0;
}

.navbar-brand {
    font-family: 'UnifrakturMaguntia', serif;
    font-size: 2.5rem;
    color: var(--primary-pink);
    font-weight: 400;
    text-shadow: 
        2px 2px 0 var(--accent-gold),
        0 0 15px rgba(255, 20, 147, 0.8);
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    text-shadow: 
        2px 2px 0 var(--accent-gold),
        0 0 25px rgba(255, 20, 147, 1),
        0 0 35px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

.navbar-toggler {
    border: 3px solid var(--accent-gold);
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px var(--text-dark);
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-pink);
    text-shadow: 
        0 0 10px rgba(255, 20, 147, 1),
        2px 2px 0 var(--text-dark);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-gold));
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

/* Language Toggle Button */
.language-toggle-item {
    margin-right: 15px;
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
}

.language-toggle-item::before,
.language-toggle-item::after {
    display: none;
}

.language-toggle {
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold) !important;
    color: var(--accent-gold) !important;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 50px;
    text-align: center;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2);
    font-family: 'Copperplate', 'Copperplate Gothic Bold', serif;
    margin: 0;
    display: inline-block;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.language-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.4s;
}

.language-toggle:hover::before {
    left: 100%;
}

.language-toggle:hover, .language-toggle:focus {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
    outline: none;
}

.language-toggle:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 0 10px rgba(255, 215, 0, 0.3);
}

#currentLang {
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-dark) 50%, var(--bg-black) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--accent-gold);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 20, 147, 0.03) 20px,
            rgba(255, 20, 147, 0.03) 40px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(255, 215, 0, 0.03) 20px,
            rgba(255, 215, 0, 0.03) 40px
        );
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.main-heading {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.hero-logo-container {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 20px rgba(255, 20, 147, 0.8))
        drop-shadow(0 0 40px rgba(255, 215, 0, 0.6))
        drop-shadow(3px 3px 0 rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: 
            drop-shadow(0 0 20px rgba(255, 20, 147, 0.8))
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.6))
            drop-shadow(3px 3px 0 rgba(255, 215, 0, 0.3));
    }
    50% {
        filter: 
            drop-shadow(0 0 30px rgba(255, 20, 147, 1))
            drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
            drop-shadow(3px 3px 0 rgba(255, 215, 0, 0.5));
    }
}

.hero-logo:hover {
    transform: scale(1.02);
    filter: 
        drop-shadow(0 0 35px rgba(255, 20, 147, 1))
        drop-shadow(0 0 60px rgba(255, 215, 0, 0.9))
        drop-shadow(5px 5px 0 rgba(255, 215, 0, 0.4));
}

.hero .lead {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--accent-gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        2px 2px 0 var(--text-dark),
        0 0 20px rgba(255, 215, 0, 0.6);
    position: relative;
    z-index: 1;
}

.hero-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    border: 5px solid var(--accent-gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.5),
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 0 50px rgba(255, 20, 147, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 215, 0, 0.05) 30px,
        rgba(255, 215, 0, 0.05) 60px
    );
    animation: rotate 20s linear infinite;
}

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

.hero-placeholder i {
    font-size: 150px;
    color: var(--primary-pink);
    opacity: 0.8;
    text-shadow: 
        0 0 30px rgba(255, 20, 147, 0.8),
        0 0 50px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Promotional Image Styles */
.hero-promo-image {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--accent-gold);
    border-radius: 0;
    box-shadow: 
        0 0 40px rgba(255, 140, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4),
        inset 0 0 50px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    padding: 10px;
}

.promo-img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 20px rgba(255, 140, 0, 0.5))
        drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
}

/* Promotional Banner Styles */
.promo-banner {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.95) 0%, 
        rgba(160, 82, 45, 0.9) 25%,
        rgba(184, 134, 11, 0.85) 50%,
        rgba(205, 133, 63, 0.9) 75%,
        rgba(139, 69, 19, 0.95) 100%);
    border: 5px solid var(--accent-gold);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(255, 140, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4),
        inset 0 0 50px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(160, 82, 45, 0.1) 20px,
            rgba(160, 82, 45, 0.1) 40px
        ),
        radial-gradient(circle at 30% 30%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(184, 134, 11, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.promo-feathers {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

.promo-title {
    font-family: 'Copperplate', 'Copperplate Gothic Bold', serif;
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 
        3px 3px 0 rgba(139, 69, 19, 0.8),
        0 0 20px rgba(255, 140, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
}

.promo-prices {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--accent-gold);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 
        inset 0 0 30px rgba(255, 140, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.3);
}

.price-item {
    margin-bottom: 20px;
    text-align: center;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 900;
}

.old-price {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(255, 0, 0, 0.8);
    font-size: 1.4rem;
    position: relative;
}

.old-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 0, 0, 0.8);
    transform: rotate(-15deg);
}

.arrow {
    color: var(--accent-gold);
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.new-price {
    color: var(--white);
    font-size: 2rem;
    text-shadow: 
        2px 2px 0 rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 140, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
    font-weight: 900;
}

.promo-footer {
    text-align: center;
}

.promo-subtitle {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.promo-pattern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-gold);
    font-size: 1.2rem;
    opacity: 0.8;
}

.pattern-dot {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.pattern-line {
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-heading {
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    text-shadow: 
        2px 2px 0 var(--text-dark),
        0 0 20px rgba(255, 20, 147, 0.6);
}

.section-heading::before {
    content: '⚡';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.section-heading::after {
    content: '⚡';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* Biography Section */
.biography {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    border-top: 3px solid var(--primary-pink);
    border-bottom: 3px solid var(--accent-gold);
}

.biography-photo-frame {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border: 6px solid var(--accent-gold);
    border-radius: 50%;
    box-shadow: 
        0 10px 45px rgba(0, 0, 0, 0.85),
        0 0 55px rgba(255, 20, 147, 0.45),
        inset 0 0 60px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
}

.biography-photo {
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center 15%;
    position: relative;
    z-index: 1;
    transform: translate(-6%, -12%) scale(1.08);
    filter: saturate(1.05) contrast(1.1);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
}

.biography-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px var(--text-dark);
}

.specialties {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    padding: 40px;
    border: 3px solid var(--accent-gold);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 20, 147, 0.1);
    position: relative;
    overflow: hidden;
}

.specialties::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 20, 147, 0.03) 20px,
        rgba(255, 20, 147, 0.03) 40px
    );
    animation: rotate 30s linear infinite;
}

.specialties-title {
    color: var(--primary-pink);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-family: 'Copperplate', 'Copperplate Gothic Bold', serif;
    text-shadow: 
        2px 2px 0 var(--accent-gold),
        0 0 20px rgba(255, 20, 147, 0.6);
    position: relative;
    z-index: 1;
}

.specialty-item {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 18px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    text-shadow: 1px 1px 2px var(--text-dark);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.specialty-item:hover {
    color: var(--primary-pink);
    border-left-color: var(--accent-gold);
    transform: translateX(10px);
    text-shadow: 
        0 0 15px rgba(255, 20, 147, 0.8),
        2px 2px 0 var(--text-dark);
}

.specialty-item i {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    border-top: 3px solid var(--accent-gold);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.portfolio-subtitle {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.portfolio-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

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

.category-btn {
    padding: 12px 25px;
    background-color: var(--bg-dark);
    border: 3px solid var(--accent-gold);
    color: var(--white);
    border-radius: 0;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 1px 1px 2px var(--text-dark);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.3), transparent);
    transition: left 0.5s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-red));
    border-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.6);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-pink));
    color: var(--text-dark);
    border-color: var(--accent-gold);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        inset 0 0 20px rgba(255, 20, 147, 0.3);
}

.portfolio-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 20px 0;
}

.portfolio-carousel::-webkit-scrollbar {
    display: none;
}

.portfolio-item {
    min-width: 350px;
    max-width: 350px;
    height: 450px;
    background-color: var(--bg-dark);
    border: 4px solid var(--accent-gold);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 
        0 5px 25px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(255, 20, 147, 0.5),
        0 0 70px rgba(255, 215, 0, 0.4);
    border-color: var(--primary-pink);
}

.portfolio-item-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.portfolio-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 215, 0, 0.02) 15px,
        rgba(255, 215, 0, 0.02) 30px
    );
}

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

.portfolio-item-placeholder {
    font-size: 80px;
    color: var(--primary-pink);
    opacity: 0.7;
    text-shadow: 
        0 0 20px rgba(255, 20, 147, 0.8),
        0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.holiday-message {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 215, 0, 0.6);
    line-height: 1.4;
    margin: 0;
}

.portfolio-item-info {
    padding: 25px;
    background: var(--bg-black);
    position: relative;
    z-index: 1;
}

.portfolio-item-category {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-red));
    color: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px var(--text-dark);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
}

.portfolio-item-title {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px var(--text-dark);
}

.carousel-controls {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-red));
    border: 3px solid var(--accent-gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 
        0 4px 15px rgba(255, 20, 147, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-pink));
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 6px 25px rgba(255, 20, 147, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6);
    border-color: var(--primary-pink);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

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

.carousel-indicator {
    width: 15px;
    height: 15px;
    border-radius: 0;
    background-color: var(--bg-dark);
    border: 3px solid var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.carousel-indicator:hover {
    background-color: var(--accent-gold);
    transform: rotate(45deg) scale(1.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.carousel-indicator.active {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-red));
    border-color: var(--primary-pink);
    transform: rotate(45deg) scale(1.3);
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
}

/* Footer Styles */
footer {
    background: linear-gradient(180deg, var(--bg-black) 0%, #000000 100%);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 5px solid var(--accent-gold);
    box-shadow: 0 -5px 30px rgba(255, 20, 147, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-pink), var(--accent-gold), var(--primary-pink));
}

.footer-title {
    color: var(--primary-pink);
    margin-bottom: 20px;
    font-family: 'Copperplate', 'Copperplate Gothic Bold', serif;
    font-size: 2rem;
    text-shadow: 
        2px 2px 0 var(--accent-gold),
        0 0 20px rgba(255, 20, 147, 0.8);
    letter-spacing: 2px;
}

.footer-link {
    color: var(--primary-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-green);
}

.social-contact h4 {
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 70px;
    height: 70px;
    border-radius: 0;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
    border: 3px solid var(--accent-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.social-link i {
    transform: rotate(-45deg);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-red));
    color: var(--white);
    transform: rotate(45deg) scale(1.2) translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 
        0 6px 25px rgba(255, 20, 147, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Contact/Booking Page Styles */
.contact-hero, .booking-hero {
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    border-bottom: 5px solid var(--accent-gold);
    position: relative;
}

.contact-hero .container, .booking-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero .lead, .booking-hero .lead {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 215, 0, 0.6);
    position: relative;
    z-index: 2;
    opacity: 1;
}

.contact-hero::before, .booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255, 20, 147, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 60%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            rgba(15, 0, 15, 0.9) 0px,
            rgba(15, 0, 15, 0.9) 45px,
            rgba(30, 0, 20, 0.75) 45px,
            rgba(30, 0, 20, 0.75) 90px
        );
    opacity: 1;
    z-index: 0;
}

.page-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-family: 'Copperplate', 'Copperplate Gothic Bold', serif;
    color: var(--accent-gold);
    text-shadow: 
        2px 2px 0 var(--primary-pink),
        5px 5px 0 rgba(0, 0, 0, 0.8),
        0 0 25px rgba(255, 215, 0, 0.8);
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.contact-form-container, .booking-form-container {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    border-radius: 0;
    padding: 50px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(255, 20, 147, 0.3),
        inset 0 0 50px rgba(255, 215, 0, 0.1);
    border: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.contact-main {
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(15, 0, 20, 0.98) 0%, rgba(10, 0, 20, 0.95) 60%, rgba(20, 0, 20, 0.98) 100%);
    overflow: hidden;
}

.contact-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(15, 0, 15, 0.85) 0px,
            rgba(15, 0, 15, 0.85) 45px,
            rgba(30, 0, 25, 0.7) 45px,
            rgba(30, 0, 25, 0.7) 90px
        );
    opacity: 0.45;
    pointer-events: none;
}

.contact-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255, 20, 147, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 60%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            rgba(15, 0, 15, 0.9) 0px,
            rgba(15, 0, 15, 0.9) 45px,
            rgba(30, 0, 20, 0.75) 45px,
            rgba(30, 0, 20, 0.75) 90px
        );
    opacity: 0.6;
    pointer-events: none;
}

.contact-main .section-heading,
.contact-main .lead,
.contact-main p {
    color: var(--accent-gold);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
}

.contact-main .lead {
    color: var(--white);
    opacity: 0.9;
}

.contact-main .container {
    position: relative;
    z-index: 1;
}

.contact-form-container::before, .booking-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 25px,
        rgba(255, 20, 147, 0.03) 25px,
        rgba(255, 20, 147, 0.03) 50px
    );
    animation: rotate 25s linear infinite;
}

.form-label {
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    position: relative;
    z-index: 1;
}

.form-control, .form-select {
    border: 3px solid var(--accent-gold);
    border-radius: 0;
    padding: 15px;
    transition: all 0.3s ease;
    background-color: var(--bg-black);
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-pink);
    background-color: var(--bg-dark);
    box-shadow: 
        0 0 0 0.2rem rgba(255, 20, 147, 0.25),
        0 0 25px rgba(255, 20, 147, 0.4);
    outline: none;
    color: var(--white);
}

.form-check-label {
    color: var(--white);
    font-weight: 700;
    text-shadow: 1px 1px 2px var(--text-dark);
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-red));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    border: 3px solid var(--accent-gold);
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
    transform: rotate(45deg);
}

.contact-icon i {
    transform: rotate(-45deg);
}

.contact-text h4 {
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.contact-text p {
    color: var(--white);
    text-shadow: 1px 1px 2px var(--text-dark);
}

.contact-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.contact-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.small-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .main-heading {
        font-size: 3rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .portfolio-item {
        min-width: 300px;
        max-width: 300px;
    }
    
    .carousel-btn.prev {
        left: -15px;
    }
    
    .carousel-btn.next {
        right: -15px;
    }
}

/* Mobile Optimizations for iPhone 16 & Samsung Flagships */
@media (max-width: 767.98px) {
    /* Typography */
    .main-heading {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .section-heading::before,
    .section-heading::after {
        display: none;
    }
    
    .navbar-brand {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    /* Language Toggle Mobile */
    .language-toggle-item {
        margin-right: 10px;
        margin-bottom: 0;
        order: -1;
    }
    
    .language-toggle {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 48px;
        min-height: 44px;
    }
    
    /* Spacing */
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    /* Hero Section Mobile */
    .hero-logo {
        max-height: 200px;
        margin-bottom: 20px;
    }
    
    .hero-promo-image {
        height: 350px;
        margin-top: 30px;
    }
    
    .promo-img {
        width: 100%;
        height: 100%;
    }
    
    /* Buttons - Better Touch Targets */
    .btn-primary, .btn-outline-primary {
        padding: 16px 30px;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    /* Biography Section */
    .biography-photo-frame {
        width: 220px;
        height: 220px;
        margin-bottom: 30px;
    }
    
    .biography-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .specialties {
        padding: 25px 20px;
    }
    
    .specialties-title {
        font-size: 1.8rem;
    }
    
    .specialty-item {
        font-size: 1.1rem;
        padding: 10px 12px;
    }
    
    /* Portfolio Section */
    .portfolio-item {
        min-width: 85vw;
        max-width: 85vw;
        height: auto;
        min-height: 400px;
    }
    
    .portfolio-item-image {
        height: 250px;
    }
    
    .portfolio-item-info {
        padding: 20px;
    }
    
    .portfolio-item-title {
        font-size: 1.1rem;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .category-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    /* Forms */
    .contact-form-container, .booking-form-container {
        padding: 25px 20px;
    }
    
    .form-control, .form-select {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    .form-label {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .page-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .social-links {
        gap: 20px;
    }
    
    /* Contact Items */
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }
}

/* Extra Small Devices (iPhone SE, smaller phones) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-logo {
        max-height: 150px;
    }
    
    .hero .lead {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .hero-promo-image {
        height: 280px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .biography-photo-frame {
        width: 180px;
        height: 180px;
    }
    
    .portfolio-item {
        min-width: 90vw;
        max-width: 90vw;
        min-height: 350px;
    }
    
    .portfolio-item-image {
        height: 200px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .contact-form-container, .booking-form-container {
        padding: 20px 15px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-logo {
        max-height: 120px;
    }
    
    .hero-promo-image {
        height: 250px;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Ensure all interactive elements are touch-friendly */
    .btn-primary, .btn-outline-primary,
    .category-btn, .carousel-btn,
    .social-link, .nav-link {
        -webkit-tap-highlight-color: rgba(255, 20, 147, 0.3);
    }
    
    /* Remove hover effects on touch devices */
    .btn-primary:hover, .btn-outline-primary:hover {
        transform: none;
    }
    
    .category-btn:hover {
        transform: none;
    }
    
    /* Improve scrolling on mobile */
    .portfolio-carousel {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .portfolio-item {
        scroll-snap-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero .row, .biography-content, .portfolio-carousel {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 10px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 2.5rem;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

.star-label:hover,
.star-label:hover ~ .star-label {
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
}

.star-label.active,
.star-label.active ~ .star-label {
    color: var(--accent-gold);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.9),
        0 0 30px rgba(255, 215, 0, 0.6);
}

.star-label.hover,
.star-label.hover ~ .star-label {
    color: var(--accent-gold);
    opacity: 0.8;
}

/* Image Preview Styles */
.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.preview-image {
    position: relative;
    width: 150px;
    height: 150px;
    border: 3px solid var(--accent-gold);
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-dark);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background: rgba(220, 20, 60, 0.9);
    color: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.preview-remove:hover {
    background: var(--accent-red);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}
