/* Main Stylesheet - Updated 2025-01-26 강제 캐시 무효화 */

/* 성능 최적화된 Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GPU 가속 최적화 */
.gpu-optimized {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* 레이어 분리로 reflow 최소화 */
.layer-optimized {
    contain: layout style paint;
}

html {
    scroll-behavior: smooth;
    /* DNS prefetch 최적화 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    /* 렌더링 최적화 */
    text-rendering: optimizeSpeed;
    font-display: swap;
}

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

/* Advanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Times New Roman', 'Noto Serif KR', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff8dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.25rem;
    color: #b8860b;
    text-align: center;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 3rem;
    position: relative;
}

.section-subtitle::after {
    content: '✦';
    display: block;
    text-align: center;
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    border: 2px solid transparent;
    letter-spacing: 1px;
    min-width: 220px;
}

.btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-color: #FFD700;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 24px 60px;
    font-size: 1.4rem;
    min-width: 320px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 a {
    font-size: 2.2rem;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    font-family: 'Noto Sans KR', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    min-height: 50px;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://i.ibb.co/jvn8WHCb/Image-fx-2-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Times New Roman', serif;
    font-style: italic !important;
    font-weight: 300 !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
    letter-spacing: 2px !important;
    line-height: 1.4 !important;
    transform: perspective(500px) rotateX(15deg) !important;
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #FFF;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
}

.hero-elegant-text {
    font-family: 'Times New Roman', 'Noto Serif KR', serif !important;
    font-size: 2.2rem !important;
    font-style: italic !important;
    font-weight: 300 !important;
    color: #ffd700 !important;
    text-align: center !important;
    letter-spacing: 1px !important;
    line-height: 1.6 !important;
    margin-bottom: 2.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    opacity: 0 !important;
    position: relative !important;
    transform: translateY(20px) !important;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-elegant-text.fade-in-elegant {
    opacity: 0.95 !important;
    transform: translateY(0) !important;
    animation: elegant-glow 3s ease-in-out infinite alternate;
}

@keyframes elegant-glow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 215, 0, 0.3);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
}

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

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

.section-header h2 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
    transform: perspective(500px) rotateX(10deg);
    letter-spacing: 2px;
}

.section-subtitle {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transform: perspective(300px) rotateX(5deg);
    letter-spacing: 1px;
}

/* About Section - Store Cards */
.about {
    background: #111;
    color: #fff;
    padding: 5rem 0;
}

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

.store-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.store-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.store-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.store-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-text {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.store-info {
    padding: 1.5rem;
}

.store-info h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.store-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.store-address span {
    color: #FFD700;
    margin-top: 0.2rem;
}

.store-address p {
    margin: 0;
    font-size: 0.9rem;
}

.store-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.store-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-width: auto;
}

.btn-outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.btn-outline:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

.more-stores {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.more-stores p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Services Section */
.services {
    background: #222;
    color: #fff;
}

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

.service-card {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: #FFD700;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

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

.service-card:hover:before {
    left: 100%;
}

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

.service-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
    background: #111;
    color: #fff;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    color: #FFD700;
}

/* Contact Section */
.contact {
    background: #222;
    color: #fff;
}

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

.map-container {
    background: #333;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.map-container h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    z-index: 10;
}

.map-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.map-info p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.map-contact {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.seo-contact {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: #333;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

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

.contact-item a {
    color: #FFD700;
    font-weight: 600;
}

.contact-form {
    background: #333;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #555;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: #333;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.social-links a:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

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

.hidden-card {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        padding: 1.5rem;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .store-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .store-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-small {
        width: 100%;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-item,
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-arrow span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #FFD700;
    border-right: 2px solid #FFD700;
    transform: rotate(45deg);
    margin: -10px auto;
    animation: scrollDown 2s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

.scroll-indicator p {
    color: #FFD700;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    font-weight: 500;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Store Detail Pages */
.store-detail-hero {
    background: linear-gradient(135deg, #111, #222);
    padding: 120px 0 60px;
    color: #fff;
}

.store-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.store-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.store-breadcrumb a {
    color: #FFD700;
    text-decoration: none;
}

.store-breadcrumb span {
    color: #fff;
}

.store-detail-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-rating-large {
    margin-bottom: 1.5rem;
}

.store-rating-large .stars {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.rating-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.store-intro {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

/* Store Gallery Section */
.store-gallery-section {
    background: #f8f8f8;
    padding: 60px 0;
}

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

.main-store-image h3,
.staff-image h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.image-placeholder {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #ddd, #eee);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
}

/* Store Info Section */
.store-info-section {
    background: #fff;
    padding: 80px 0;
}

.store-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.store-details h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-list {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.store-description {
    background: linear-gradient(135deg, #f8f8f8, #fff);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.store-description h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.store-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact Cards */
.contact-card,
.hours-card,
.location-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-card h3,
.hours-card h3,
.location-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.phone-number a {
    font-size: 1.5rem;
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
}

.phone-number a:hover {
    color: #FFA500;
}

.contact-desc {
    color: #666;
    margin: 0.5rem 0 1.5rem 0;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.hour-item.closed {
    background: #ffeaea;
}

.hour-item .day {
    font-weight: 600;
    color: #333;
}

.hour-item .time {
    color: #666;
}

.hour-item.closed .time {
    color: #d32f2f;
    font-weight: 600;
}

.location-details .address {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-details .subway {
    color: #666;
    font-size: 0.9rem;
}

/* Map Section */
.store-map-section {
    background: #f8f8f8;
    padding: 60px 0;
}

.store-map-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-container-detail {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.map-info-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.map-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.map-details p {
    margin: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.store-cta-section {
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Responsive for Store Detail */
@media (max-width: 768px) {
    .store-detail-header h1 {
        font-size: 2rem;
    }
    
    .store-images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .store-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .map-info-overlay {
        position: static;
        margin-top: 1rem;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Quick Contact Section Styles */
.quick-contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem 0;
    margin: 2rem 0;
}

.quick-contact-card {
    background: linear-gradient(145deg, #333333, #1f1f1f);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.quick-contact-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    min-width: 180px;
    justify-content: center;
}

.contact-btn .btn-icon {
    font-size: 1.2rem;
}

.contact-btn.btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: 2px solid #FFD700;
}

.contact-btn.btn-primary:hover {
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.contact-btn.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.contact-btn.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.contact-info-quick {
    text-align: left;
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

/* About Section Styles */
.about-section {
    background: #f8f8f8;
    padding: 3rem 0;
}

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

.about-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text {
    text-align: left;
    line-height: 1.8;
}

.about-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #FFD700;
}

.contact-info-quick p {
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    font-size: 1rem;
}

.contact-info-quick strong {
    color: #FFD700;
}

/* Responsive for Quick Contact */
@media (max-width: 768px) {
    .quick-contact-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .quick-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-contact-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-info-quick {
        text-align: center;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 2rem 0;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
}
