/* ========================================
   STORE PAGE STYLES
   ======================================== */

/* Store Hero Section */
.store-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.store-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 222, 98, 0.8) 0%, rgba(58, 130, 195, 0.6) 100%);
    z-index: -1;
}

.store-hero .hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    z-index: 1;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.store-hero .hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

.store-hero .hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.store-hero .hero-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(107, 222, 98, 0.3) 0%, 
        rgba(58, 130, 195, 0.3) 25%, 
        rgba(213, 78, 41, 0.3) 50%, 
        rgba(58, 130, 195, 0.3) 75%, 
        rgba(107, 222, 98, 0.3) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.7;
}

.store-hero .hero-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-logo-container {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    max-width: clamp(500px, 70vw, 1000px);
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-logo-image:hover {
    transform: scale(1.02);
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.store-hero .hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--grass-green);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.store-hero .hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.store-hero .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Store About Section */
.store-about {
    background: var(--gray-100);
    padding: 80px 0;
}

.store-about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

.store-about .about-text h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--auto-blue);
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.store-about .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray-700);
}

.store-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--auto-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Products Section */
.products-section {
    background: var(--white);
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card .card-header {
    margin-bottom: 20px;
}

.product-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-card .card-content h3 {
    color: var(--auto-blue);
    margin-bottom: 15px;
}

.product-card .card-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 5px 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--grass-green);
    font-weight: bold;
}

/* Store Gallery Section - Carousel */
.store-gallery-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.gallery-carousel {
    position: relative;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 60px;
}

.gallery-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: thin;
    scrollbar-color: var(--auto-blue) transparent;
}

.gallery-track::-webkit-scrollbar {
    height: 8px;
}

.gallery-track::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.gallery-track::-webkit-scrollbar-thumb {
    background: var(--auto-blue);
    border-radius: 10px;
}

.gallery-track::-webkit-scrollbar-thumb:hover {
    background: var(--grass-green);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-width: 300px;
    max-width: 300px;
    height: 300px;
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Navigation Buttons */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--auto-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--auto-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-btn:hover {
    background: var(--auto-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(58, 130, 195, 0.4);
}

.gallery-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-btn-prev {
    left: 0;
}

.gallery-btn-next {
    right: 0;
}

.gallery-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

/* Gallery Dots Navigation */
.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    background: var(--gray-400);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--auto-blue);
    width: 14px;
    height: 14px;
}

/* Call to Action Section */
.store-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(107, 222, 98, 0.1) 0%, rgba(58, 130, 195, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.store-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(58,130,195,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--auto-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(58, 130, 195, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(58, 130, 195, 0.4);
}

.cta-button i {
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-highlight {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--grass-green), var(--auto-blue));
    opacity: 0;
    transition: var(--transition);
}

.feature-highlight:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-highlight:hover::before {
    opacity: 1;
}

.feature-highlight .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    transition: var(--transition);
}

.feature-highlight:hover .feature-icon {
    transform: scale(1.1);
}

.feature-highlight h3 {
    color: var(--auto-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-highlight p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

/* Store Info Section */
.store-info {
    background: var(--white);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 2rem;
    color: var(--auto-blue);
}

.info-header h3 {
    color: var(--auto-blue);
    margin: 0;
}

.info-content {
    color: var(--gray-600);
}

.hours-list {
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--gray-700);
}

.time {
    color: var(--gray-600);
}

.hours-note {
    margin-top: 15px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: 8px;
    text-align: center;
}

.hours-note p {
    margin: 0;
    font-style: italic;
    color: var(--gray-600);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-label {
    font-weight: 600;
    color: var(--gray-700);
    min-width: 60px;
}

.contact-value {
    color: var(--gray-600);
    flex: 1;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item {
    padding: 8px 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.service-item:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-about .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .store-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-highlight {
        padding: 30px 20px;
    }

    .feature-highlight .feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .feature-highlight h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-carousel {
        padding: 0 50px;
    }

    .gallery-item {
        min-width: 250px;
        max-width: 250px;
        height: 250px;
    }

    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .store-cta-section {
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 15px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .feature-highlight {
        padding: 25px 15px;
    }

    .feature-highlight .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .feature-highlight h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature-highlight p {
        font-size: 0.9rem;
    }

    .store-hero .hero-content {
        padding: 0 20px;
        min-height: 70vh;
    }

    .store-hero .hero-card {
        padding: 40px 30px;
    }

    .gallery-carousel {
        padding: 0 40px;
    }

    .gallery-item {
        min-width: 200px;
        max-width: 200px;
        height: 200px;
        border-radius: 8px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .gallery-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    .gallery-dot.active {
        width: 12px;
        height: 12px;
    }

    .store-cta-section {
        padding: 50px 0;
    }

    .cta-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .hero-logo-container {
        margin-bottom: 25px;
    }

    .hero-logo-image {
        max-width: clamp(300px, 60vw, 500px);
    }

    .store-hero .hero-buttons {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    right: clamp(16px, 2vw, 32px);
    bottom: clamp(16px, 2vw, 32px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: rgba(44, 85, 48, 0.60);
    color: #fff;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(2, 2, 2, 0.5);
    backdrop-filter: blur(6px);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.floating-cta:hover,
.floating-cta:focus-visible {
    background: rgba(44, 85, 48, 1);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.floating-cta:focus-visible {
    outline: 3px solid rgba(107, 222, 98, 0.3);
    outline-offset: 4px;
}

@media (max-width: 600px) {
    .floating-cta {
        max-width: 50%;
        right: 16px;
        bottom: 16px;
        padding: 14px 18px;
        text-align: right;
        border-radius: 12px;
        font-size: 0.75rem;
    }
}

/* Floating CTA Modal */
.cta-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cta-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cta-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    margin: 0 auto;
}

.cta-modal.active {
    transform: translateY(0);
}

.cta-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.cta-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    margin: 0;
}

.cta-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s ease;
    border-radius: 4px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cta-modal-close:hover {
    color: #2c5530;
    background: #f0f0f0;
}

.cta-modal-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cta-modal-btn-call {
    background: #2c5530;
    color: #fff;
}

.cta-modal-btn-call:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.cta-modal-btn-email {
    background: #f0f8f0;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.cta-modal-btn-email:hover {
    background: #2c5530;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.cta-modal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.cta-modal-phone-display {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cta-modal-phone-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.cta-modal-phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    letter-spacing: 0.5px;
}

.cta-modal-email-display {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cta-modal-email-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-modal-email-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-modal-email-address {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    word-break: break-all;
    flex: 1;
    min-width: 0;
}

.cta-modal-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: #2c5530;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    white-space: nowrap;
}

.cta-modal-copy-btn:hover {
    background: #1e3a21;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
}

.cta-modal-copy-btn:active {
    transform: translateY(0);
}

.cta-modal-copy-btn.copied {
    background: #4caf50;
}

.cta-modal-copy-btn .copy-icon {
    font-size: 1rem;
}

.cta-modal-copy-btn .copy-text {
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .cta-modal {
        border-radius: 20px 20px 0 0;
        padding: 24px 20px;
    }

    .cta-modal-title {
        font-size: 1.25rem;
    }

    .cta-modal-btn {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .cta-modal-phone-number {
        font-size: 1.25rem;
    }

    .cta-modal-email-address {
        font-size: 1rem;
    }

    .cta-modal-email-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .cta-modal-copy-btn {
        width: 100%;
        padding: 10px 16px;
    }
}

@media (max-width: 479px) {
    .store-hero .hero-content {
        padding: 0 15px;
        min-height: 70vh;
    }

    .store-hero .hero-card {
        padding: 30px 20px;
        margin: 15px 0;
        border-radius: 12px;
    }

    .hero-logo-container {
        margin-bottom: 20px;
    }

    .hero-logo-image {
        max-width: clamp(250px, 50vw, 400px);
    }

    .store-hero .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        margin-bottom: 15px;
    }

    .store-hero .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .store-hero .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        width: 100%;
    }

    .store-hero .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Tablet specific styles */
@media (max-width: 1024px) and (min-width: 768px) {
    .store-about .about-image {
        --width: 200px;
        transform: rotate(-1deg);
        margin: 10px auto;
        width: var(--width);
        height: calc(var(--width) * 2.12 / 2.62);
        max-width: 100%;
        overflow: hidden;
    }

    .store-about .polaroid__wrapper {
        --width: 200px;
    }
}
