/* CSS Variables */
:root {
    --primary: #1a1a1a;
    --accent: #ff6b35;
    --secondary: #2c5530;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2rem;
    color: var(--accent);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--primary);
}

.contact-item {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info i {
    color: var(--accent);
    margin-right: 5px;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -30%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--accent);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    min-height: 50px;
    white-space: nowrap;
}

.cta-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.cta-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.cta-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid #e9ecef;
}

.cta-secondary:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.storefront-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, #e9ecef, #f8f9fa);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    border: 2px dashed #dee2e6;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.shop-front-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.placeholder-content small {
    color: #999;
    font-size: 0.9rem;
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.floating-stat {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
    border: 1px solid rgba(255, 107, 53, 0.1);
    min-width: 0;
}

.floating-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.floating-stat .stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    font-weight: 500;
}

/* Section Common Styles */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.section-title p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    background: var(--white);
    position: relative;
    padding: 120px 0 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #ff8a65);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before,
.product-card.active::before {
    transform: scaleX(1);
}

.product-card:hover,
.product-card.active {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    transition: all 0.4s ease;
}

.product-card:hover .product-icon,
.product-card.active .product-icon {
    background: var(--accent);
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.product-icon i {
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.4s ease;
}

.product-card:hover .product-icon i,
.product-card.active .product-icon i {
    color: white;
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.product-card:hover h3,
.product-card.active h3 {
    color: var(--accent);
}

.product-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.product-card:hover p,
.product-card.active p {
    color: var(--primary);
}

/* Gallery Section */
.gallery {
    background: var(--light);
}

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

.gallery-item {
    aspect-ratio: 4/3;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px dashed #e9ecef;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.gallery-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent);
    transition: all 0.3s ease;
}

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

/* Location Section */
.location {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
}

.info-item:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-item div h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-item div p {
    color: #666;
    line-height: 1.7;
}

.info-item div p a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.info-item div p a:hover {
    text-decoration: underline;
}

.map-container {
    background: var(--light);
    border-radius: 20px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 80px 0 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-section ul li i {
    color: var(--accent);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    min-width: 50px;
    min-height: 50px;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    color: rgba(255, 107, 53, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Touch device optimizations */
.touch-device .product-card:hover,
.touch-device .gallery-item:hover,
.touch-device .info-item:hover {
    transform: none;
}

.touch-device .product-card:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .product-card {
        padding: 40px 30px;
    }
    
    .location-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header mobile */
    .header-content {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid #e9ecef;
        order: 3;
        font-size: 0.9rem;
    }
    
    .contact-info.active {
        display: flex;
    }
    
    .contact-item {
        padding: 8px 0;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .contact-item:hover {
        background: rgba(255, 107, 53, 0.1);
        padding-left: 10px;
    }
    
    /* Hero mobile */
    .hero {
        padding: 40px 0 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    /* Hero image mobile */
    .storefront-image {
        height: 250px;
        margin-bottom: 40px;
    }
    
    .floating-stats {
        position: static;
        margin-top: 30px;
        gap: 15px;
    }
    
    .floating-stat {
        padding: 15px 10px;
        min-width: 0;
    }
    
    .floating-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-stat .stat-label {
        font-size: 0.75rem;
    }
    
    /* Section mobile */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    /* Products mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card {
        padding: 35px 25px;
        margin: 0 10px;
    }
    
    .product-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .product-icon i {
        font-size: 1.8rem;
    }
    
    .product-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .product-card p {
        font-size: 0.95rem;
    }
    
    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 200px;
        margin: 0 10px;
    }
    
    .gallery-item i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    /* Location mobile */
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-item {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.3rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
    }
    
    .map-container {
        height: 300px;
        margin: 0 10px;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .product-card {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-stat {
        padding: 12px;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .info-item {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .gallery-item,
    .map-container {
        margin: 0 5px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0 40px 0;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .storefront-image {
        height: 200px;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .shop-front-photo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-icon {
        animation: none;
    }
}

/* Print styles */
@media print {
    .hero-cta,
    .social-links,
    .mobile-menu-btn,
    .floating-icons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 20px 0;
    }
}
