:root {
    --primary-color: #2e8b57;
    /* SeaGreen - Adjusted for a fresher look */
    --primary-dark: #1e5f3c;
    --secondary-color: #333;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --light-gray: #eee;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3500;
}

.cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    padding: 14px 14px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.cookie-consent__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
    color: #333;
}

.cookie-consent__text strong {
    font-size: 1rem;
}

.cookie-consent__link {
    margin-top: 4px;
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: underline;
    width: fit-content;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 800;
}

.cookie-consent__btn--primary {
    background: var(--primary-color);
    color: #fff;
}

.cookie-consent__btn--secondary {
    background: #e9ecf1;
    color: #333;
}

@media (max-width: 720px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent__actions {
        justify-content: stretch;
    }
    .cookie-consent__btn {
        width: 100%;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

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

.highlight {
    color: var(--primary-color);
}

/* Header - Premium Redesign */
.site-header {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    /* Taller for premium feel */
    display: flex;
    align-items: center;
    /* Vertically center content */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    /* Larger logo */
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Desktop Nav - Clean & Minimal */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    /* More breathing room */
}

.desktop-nav a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--secondary-color);
    position: relative;
    padding: 10px 0;
    transition: color 0.3s;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.desktop-nav a.active {
    font-weight: 700;
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-btn {
    font-size: 1.4rem;
    color: var(--secondary-color);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 5px;
    transition: transform 0.2s;
}

.cart-btn:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.cart-count-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    border: 2px solid #fff;
    /* Separation ring */
    font-weight: 700;
}

/* Mobile Toggle - Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    /* Above drawer */
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Drawer Styles */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 85%;
    /* Responsive width */
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transition: left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active,
.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.close-drawer-btn {
    background: none;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    padding: 0 10px;
}

.mobile-nav-content ul {
    list-style: none;
    padding: 10px 0;
}

.mobile-nav-content a {
    display: block;
    padding: 18px 25px;
    font-size: 1.15rem;
    color: var(--secondary-color);
    border-bottom: 1px solid #f9f9f9;
    font-weight: 500;
}

.mobile-nav-content a:hover {
    background: #fcfcfc;
    color: var(--primary-color);
    padding-left: 30px;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        /* Show Hamburger */
    }

    .site-header {
        height: 70px;
        /* Slightly smaller on mobile */
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero_bg.jpg') no-repeat center center/cover;
    min-height: 400px;
    /* Changed from height to min-height */
    padding: 60px 20px;
    /* Added padding to prevent overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
    /* Subtle modern touch */
}

.hero-content {
    width: 100%;
    /* Ensure it doesn't shrink to paragraph width */
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Hero Cards */
.hero-cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    max-width: 360px;
    /* Wider cards */
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-card h3 {
    color: #ffd700;
    /* Gold */
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.hero-card p {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.sub-text {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 8px;
    display: block;
}

.btn-app-store {
    background: #000;
    color: #fff;
    padding: 6px 14px;
    /* Smaller button */
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
}

.btn-app-store:hover {
    transform: scale(1.05);
}

/* Removed the auto-inserted Apple glyph because it renders inconsistently across devices */

/* Dance Animation */
.dance-animation {
    animation: dance 2s infinite ease-in-out;
}

@keyframes dance {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    20% {
        transform: translateY(-5px) rotate(-1deg);
    }

    40% {
        transform: translateY(5px) rotate(1deg);
    }

    60% {
        transform: translateY(-3px) rotate(-0.5deg);
    }

    80% {
        transform: translateY(3px) rotate(0.5deg);
    }
}

/* Services Grid */
.services-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    /* Responsive wide cards */
    gap: 20px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

.service-card:hover .image-wrapper img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.service-card h3 {
    padding: 15px 15px 6px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.service-card .service-subtext {
    background: #fff;
    padding: 0 15px 15px;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.3;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

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

.about-content p {
    margin-bottom: 15px;
    color: #555;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 70px 0 30px;
    font-size: 0.95rem;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

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

.footer-col h3 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: var(--transition);
    color: #b0b0b0;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.google-review-btn .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols on tablet */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile landscape */
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* 1 col on mobile portrait */
    }
}

/* Service Page Styles */
.page-content {
    padding: 40px 20px;
    max-width: 900px;
    /* Readability width */
}

.page-content h1 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.service-detail {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.pricing-box {
    background: #f4f6f5;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.pricing-box h3,
.supported-countries h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.pricing-box ul,
.supported-countries ul {
    list-style: none;
    padding-left: 0;
}

.pricing-box li,
.supported-countries li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-box li:last-child,
.supported-countries li:last-child {
    border-bottom: none;
}

/* Expandable Pricing */
details.pricing-expand {
    margin: 20px 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

details.pricing-expand summary {
    padding: 15px 20px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-color);
    transition: background 0.2s;
}

details.pricing-expand summary:hover {
    background: #f1f1f1;
}

details.pricing-expand summary::-webkit-details-marker {
    display: none;
}

details.pricing-expand[open] summary {
    border-bottom: 1px solid #eee;
}

details.pricing-expand[open] summary i {
    transform: rotate(180deg);
}

.pricing-content {
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.prices-table th,
.prices-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.prices-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.prices-table tr:last-child td {
    border-bottom: none;
}

.prices-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.small-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.columns-2 {
    column-count: 2;
}

@media (max-width: 600px) {
    .columns-2 {
        column-count: 1;
    }
}

/* Back to Home Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    text-decoration: underline;
}

/* App Promo Section */
.app-promo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
    /* Match container generally but constrained */
    /* If container is wider, this box is centred by margin auto */
}

/* Ensure inner container resets text align if needed, but center is good here */
.app-promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-info {
    max-width: 700px;
}

.app-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    /* Force white */
}

.app-subhead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-features {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.app-features li {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.app-download-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-btn img {
    height: 50px;
    transition: transform 0.2s ease;
}

.app-store-btn:hover img {
    transform: scale(1.05);
}

.android-coming-soon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    height: 50px;
    /* Match Apple button height approx */
    box-sizing: border-box;
    font-size: 0.9rem;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .app-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .app-info h2 {
        font-size: 2rem;
    }
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    line-height: 0;
    /* Remove gap */
}

/* Images */
.c-image {
    width: 100%;
    display: block;
}

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

/* Layering */
.c-image.after-image {
    position: relative;
    /* Base */
}

.c-image.before-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    /* Default Show 50% */
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    background: #fff;
    /* Fallback */
}

/* Filter Effect for "Before" */
.c-image.before-image img {
    filter: sepia(0.8) grayscale(0.6) contrast(1.2) brightness(0.9) blur(0.5px);
}

/* Labels */
.c-label {
    position: absolute;
    top: 20px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    line-height: normal;
}

.after-image .c-label {
    right: 20px;
}

.before-image .c-label {
    left: 20px;
}

/* Handle/Divider */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    /* Thickness of white line */
    background: #fff;
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    font-size: 1.2rem;
}

/* Invisible Range Input */
.c-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: col-resize;
    margin: 0;
    touch-action: none;
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .service-card:nth-child(1) {
    transition-delay: 0.0s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* Premium Pricing Card (Wow Effect) */
.premium-card {
    position: relative;
    border: 2px solid #ffd700;
    /* Gold */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transform: scale(1.02);
    overflow: hidden;
    background-color: #fffff0;
    /* Light yellow tint */
    border-radius: 8px;
    padding: 10px 15px !important;
    /* Override defaults */
    margin: 10px 0;
    list-style: none !important;
}

.premium-card::before {
    content: 'Best Value';
    position: absolute;
    top: 10px;
    right: -28px;
    background: #ffd700;
    color: #000;
    padding: 3px 30px;
    transform: rotate(45deg);
    font-size: 0.65rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
    text-transform: uppercase;
}

.premium-card:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: scale(1.04);
}

/* Contact Page Styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-block {
    margin-bottom: 30px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.phone-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.call-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    display: block;
}

.opening-hours {
    list-style: none;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.opening-hours li:last-child {
    border-bottom: none;
}

.opening-hours span.closed {
    color: #e74c3c;
    font-weight: 600;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 350px;
    }
}
/* --- SHOP PAGE STYLES (Restored) --- */

.shop-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    border-radius: 0 0 20px 20px;
}

.shop-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.shop-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
}

.search-input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    outline: none;
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    width: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.search-btn:hover {
    background-color: #333;
    transform: scale(0.95);
}

.shop-section {
    padding-bottom: 100px;
}

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

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Soft shadow */
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-image {
    height: 250px; /* Taller images */
    overflow: hidden;
    position: relative;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Better for product photos */
    transition: transform 0.5s ease;
    padding: 20px; /* whitespace around product */
}

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

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffd700;
    color: #333;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.product-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-desc {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.add-to-cart-btn {
    background: var(--primary-color); /* Primary button style */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

/* Cart Sidebar Styling (Restored) */
.cart-overlay {
    /* ... (Logic handled by .mobile-drawer-overlay mostly, sharing styles) ... */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #fff;
    z-index: 2005; /* Above everything */
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.body.cart-open .cart-overlay, 
body.cart-open .cart-overlay {
    opacity: 1;
    visibility: visible;
}

body.cart-open .cart-sidebar {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.cart-header h2 {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s;
    line-height: 1;
}

.close-cart-btn:hover {
    color: #333;
}

.cart-content {
    flex-grow: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #aaa;
}

.empty-cart-message i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #eee;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid #f5f5f5;
    background-color: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #999;
}

/* Responsive Cart */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}


/* --- Placeholder Icon Styling --- */
.product-image i {
    transition: transform 0.3s ease;
}
.product-card:hover .product-image i {
    transform: scale(1.1);
    color: var(--primary-color) !important;
}


/* --- Shop Construction Alert --- */
.shop-construction-alert {
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.6);
    padding: 15px 25px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    animation: pulseAlert 2s infinite ease-in-out;
}

.shop-construction-alert i {
    font-size: 1.5rem;
    color: #ffd700; /* Gold hammer */
}

@keyframes pulseAlert {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
}

