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

:root {
    --color-primary: #3F574B;
    --color-secondary: #D6A067;
    --color-secondary-light: #E0B584;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-primary);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    font-weight: 400;
    scrollbar-gutter: stable;
    will-change: scroll-position;
    transition: overflow-y 0.01s;
}

body.splash-active {
    overflow: hidden;
    height: 100vh;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
    visibility: visible;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.splash-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: splashLogoFadeIn 1s ease-out, splashLogoFloat 3s ease-in-out 1s infinite;
}

.splash-logo-img {
    height: 80px;
    width: auto;
    animation: splashLogoScale 1.2s ease-out;
}

.splash-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    animation: splashTextFadeIn 1.2s ease-out 0.3s both;
}

.splash-logo-top {
    display: flex;
    align-items: center;
    gap: 0;
}

.splash-logo-get {
    color: var(--color-white);
    font-weight: 800;
    font-size: 2.8rem;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.splash-logo-cut {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 2.8rem;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(214, 160, 103, 0.3);
    letter-spacing: 2px;
}

.splash-logo-pet {
    color: var(--color-white);
    font-weight: 800;
    font-size: 2.8rem;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

@keyframes splashLogoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes splashLogoScale {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes splashLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes splashTextFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Prevent layout shift during navigation */
body.scrollbar-keep {
    overflow-y: auto !important;
}

body.scrollbar-hide {
    overflow-y: hidden !important;
}

/* Overlay scrollbar for webkit browsers */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(63, 87, 75, 0.95) 0%, rgba(63, 87, 75, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.hidden {
    display: none !important;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-top {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-get {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
}

.logo-cut {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1rem;
}

.logo-pet {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
}

.nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 1;
    pointer-events: none;
}

.nav .nav-link {
    pointer-events: auto;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: fit-content;
    line-height: 1;
    margin: 0;
    height: 42px;
    box-sizing: border-box;
    vertical-align: middle;
    border: 1px solid transparent;
}

/* Hover effect background */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(214, 160, 103, 0.15) 0%, rgba(224, 181, 132, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border: 1px solid rgba(214, 160, 103, 0.2);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 160, 103, 0.2);
}

/* Splash effect using ::after pseudo-element */
.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: none;
}

/* Splash animation trigger */
.nav-link.splash-active::after {
    animation: splashExpand 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes splashExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    30% {
        opacity: 0.6;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(214, 160, 103, 0.25) 0%, rgba(224, 181, 132, 0.2) 100%);
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 160, 103, 0.3), 0 0 0 1px rgba(214, 160, 103, 0.3);
    border: 1px solid rgba(214, 160, 103, 0.4);
    color: var(--color-white);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    border-radius: 2px;
    animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
    }
}

.nav-link span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.nav-link:hover span {
    transform: scale(1.05);
}

.nav-link.active span {
    transform: none;
    text-shadow: 0 0 10px rgba(214, 160, 103, 0.3);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}


.sign-in-btn {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: var(--color-white);
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(214, 160, 103, 0.25);
    position: relative;
    overflow: hidden;
}

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

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

.sign-in-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 160, 103, 0.4);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: absolute;
}

.mobile-menu-btn .hamburger-line:nth-child(1) {
    top: 8px;
}

.mobile-menu-btn .hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn .hamburger-line:nth-child(3) {
    bottom: 8px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-nav {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 100%);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-link {
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 8px 0;
    width: 100%;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.mobile-nav.active .nav-link {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

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

.mobile-nav .nav-link:hover {
    background: linear-gradient(135deg, rgba(214, 160, 103, 0.15) 0%, rgba(224, 181, 132, 0.1) 100%);
    border-color: rgba(214, 160, 103, 0.3);
    transform: translateX(5px);
}

.mobile-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(214, 160, 103, 0.25) 0%, rgba(224, 181, 132, 0.2) 100%);
    border-color: rgba(214, 160, 103, 0.4);
    box-shadow: 0 4px 15px rgba(214, 160, 103, 0.2);
}

.mobile-nav .nav-link span {
    width: 100%;
    text-align: center;
}

/* Main Content */
.main-content {
    margin-top: 70px;
}

.page {
    display: none;
    min-height: calc(100vh - 70px);
    padding: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Special handling for home page - must use flex */
#home.page {
    display: none;
    flex-direction: column;
}

#home.page.active {
    display: flex;
}

.page.active {
    display: block;
    animation: pageFadeIn 0.6s ease forwards;
}

/* Home page uses flex layout */
#home.page.active {
    display: flex;
}

.page.page-exit {
    animation: pageFadeOut 0.4s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Home Page */
#home {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 70px);
    min-height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    overflow: hidden;
    box-sizing: border-box;
}

/* Prevent body scroll when on home page (desktop only) */
body.home-active {
    overflow-y: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

html.home-active {
    overflow-y: hidden;
    height: 100vh;
}

.hero-section {
    background-color: var(--color-primary);
    padding: 40px 0 0;
    flex: 1;
    display: flex;
    align-items: flex-start;
    min-height: 0;
    overflow: visible;
    position: relative;
    padding-bottom: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 40px);
    align-items: stretch;
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
}

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

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-white);
    font-weight: 400;
    line-height: 1.6;
}

.check-icon {
    width: 32px;
    height: 32px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.btn-primary,
.btn-secondary {
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
    border-radius: 5px;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 18px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 160, 103, 0.4);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    min-height: 100%;
}

.hero-image {
    position: absolute;
    right: 20px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: calc(50% - 20px);
    padding-bottom: 0;
    z-index: 1;
    transform: translateY(calc(35% - 70px));
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-illustration {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: scale(1.026);
}

.hero-illustration {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-logo-mobile {
    display: none;
}

.learn-more-button-mobile {
    display: none;
}

.hero-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.placeholder-content {
    font-family: monospace;
}

/* Footer Section */
.footer-section {
    background: var(--color-white);
    padding: 0;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.footer-content {
    display: flex;
    gap: 0;
    align-items: stretch;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 150px;
    position: relative;
}

.footer-left {
    padding: 25px 20px;
    background-color: var(--color-white);
    flex: 0 0 70%;
    max-width: 70%;
    box-sizing: border-box;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.social-link:hover {
    transform: translateY(-2px);
}

.footer-info {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-right {
    background-color: #708B7B;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 150px;
    position: absolute;
    left: 70%;
    right: calc(-50vw + 50%);
    top: 0;
    bottom: 0;
    width: auto;
    box-sizing: border-box;
}

.learn-more-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
    width: 100%;
    height: 100%;
    white-space: nowrap;
}

.learn-more-link:hover {
    transform: translateX(5px);
    opacity: 0.9;
}

.learn-more-link svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.learn-more-link:hover svg {
    transform: translateX(5px);
}

.learn-more-link svg {
    width: 20px;
    height: 20px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    display: inline-block;
}

.page-title .title-white,
.page-title .title-orange {
    display: inline;
    white-space: nowrap;
}

.title-white {
    color: var(--color-white);
}

.title-orange {
    color: var(--color-secondary);
    font-weight: 700;
}

/* About Page */
#about .page-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.about-text .page-header {
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-white);
    font-weight: 400;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    text-align: center;
}

.about-dog-img {
    max-width: 70%;
    width: 70%;
    height: auto;
    border-radius: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    background-color: #F5F5F5;
    border: 2px dashed #CCCCCC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 10px;
    text-align: center;
    padding: 10px;
    font-family: monospace;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.feature-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Service Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0 10px 35px;
    border-bottom: 1px solid #E0E0E0;
    color: var(--color-text);
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Fredoka', sans-serif;
    position: relative;
}

.service-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #D6A067;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(214, 160, 103, 0.3);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-image {
    margin-top: 20px;
    text-align: center;
}

.service-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 
 * Lokasi penggunaan gambar:
 * - service_basic_placeholder.png: index.html line 217, service-card pertama (nth-child(1))
 * - service_product_placeholder.png: index.html line 247, service-card keempat (nth-child(4))
 * 
 * Desktop: Turunkan kedua gambar tanpa mempengaruhi kontainer
 */
.service-card:nth-child(1) .service-img {
    transform: translateY(52px);
}

.service-card:nth-child(4) .service-img {
    transform: translateY(39px);
}

.service-placeholder {
    background-color: #F5F5F5;
    border: 2px dashed #CCCCCC;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 12px;
    font-family: monospace;
}

/* Check Up Schedule Section */
.checkup-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.checkup-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkup-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.checkup-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
}

.checkup-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Doctor Selection */
.doctor-selection {
    margin-bottom: 40px;
}

.doctor-selection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.doctor-card {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.doctor-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 8px 25px rgba(214, 160, 103, 0.3);
}

.doctor-card.selected {
    background: rgba(214, 160, 103, 0.1);
    border-color: var(--color-secondary);
    box-shadow: 0 4px 15px rgba(214, 160, 103, 0.4);
}

.doctor-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #E0E0E0;
    transition: all 0.3s ease;
}

.doctor-card.selected .doctor-image {
    border-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(214, 160, 103, 0.5);
}

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

.doctor-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Calendar Section */
.calendar-section {
    margin-top: 30px;
}

.calendar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.calendar-container {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #E0E0E0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav-btn {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover:not(:disabled) {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.calendar-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-nav-btn svg {
    width: 20px;
    height: 20px;
}

.calendar-month-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.available {
    background: #FFFFFF;
    color: var(--color-primary);
    border: 1px solid #E0E0E0;
}

.calendar-day.available:hover {
    background: rgba(214, 160, 103, 0.1);
    border-color: var(--color-secondary);
    transform: scale(1.05);
}

.calendar-day.available.selected {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(214, 160, 103, 0.6);
    font-weight: 700;
}

.calendar-day.disabled {
    background: #FFE5E5;
    color: #CC0000;
    cursor: not-allowed;
    border: 1px solid #FF9999;
    opacity: 0.7;
}

.selected-date-info {
    margin-top: 25px;
    padding: 20px;
    background: rgba(214, 160, 103, 0.1);
    border-radius: 15px;
    border: 2px solid var(--color-secondary);
    text-align: center;
}

.selected-date-text {
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.selected-date-text span {
    font-weight: 700;
    color: var(--color-secondary);
}

.btn-book-appointment {
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-book-appointment:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 160, 103, 0.4);
}

/* Pricing Page */
.pricing-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    color: var(--color-text);
}

.pricing-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-column {
    flex: 1;
}

.pricing-divider {
    width: 1px;
    background-color: #E0E0E0;
}

.pricing-category {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-list li {
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    color: var(--color-text);
    font-size: 1rem;
    position: relative;
    flex-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #D6A067;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(214, 160, 103, 0.3);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list li .price {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
    align-self: center;
    order: 2;
}

.pricing-list li {
    max-width: 100%;
}

.pricing-list li {
    flex-direction: row;
    flex-wrap: wrap;
}

.pricing-list li .price {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
}


/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    color: var(--color-text);
}

.contact-section {
    padding: 20px;
    border-right: 1px solid #E0E0E0;
}

.contact-section:last-child {
    border-right: none;
}

.contact-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-text);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text);
    flex-shrink: 0;
}

.contact-item p {
    margin: 5px 0;
    color: var(--color-text);
}

/* Subscription Page */
.subscription-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.subscription-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.subscription-card {
    background-color: var(--color-white);
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.subscription-card.selected {
    border: 2px solid var(--color-secondary);
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(214, 160, 103, 0.3);
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
}

.tier-emoji {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.tier-features li {
    color: var(--color-text);
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tier-features li:last-child {
    border-bottom: none;
}

.feature-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 5px;
    font-style: italic;
}

.tier-suitable {
    background-color: #F5F5F5;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #E0E0E0;
}

.tier-suitable p {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.tier-suitable strong {
    color: var(--color-secondary);
}

.tier-select-btn {
    width: 100%;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tier-select-btn:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 160, 103, 0.4);
}

.subscription-card.selected .tier-select-btn {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

.subscription-card.selected .tier-select-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Duration Selection Modal */
.duration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.duration-modal.hidden {
    display: none;
}

.duration-modal.modal-show {
    opacity: 1;
    visibility: visible;
}

.duration-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.duration-modal-content {
    position: relative;
    background-color: var(--color-primary);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    z-index: 3001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.duration-modal.modal-show .duration-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.duration-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.duration-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.duration-modal-close {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.duration-modal-close:hover {
    transform: rotate(90deg);
}

.duration-modal-close svg {
    width: 24px;
    height: 24px;
}

.duration-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.duration-option {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.duration-option::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 160, 103, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.duration-option:hover::before {
    width: 300px;
    height: 300px;
}

.duration-option:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(214, 160, 103, 0.3);
}

.duration-option:active {
    transform: translateY(-2px) scale(0.98);
}

.duration-option > * {
    position: relative;
    z-index: 1;
}

.duration-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.duration-option-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.duration-badge {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.duration-option-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.duration-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: 'Inter', sans-serif;
}

.duration-price-original {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.duration-suitable {
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(214, 160, 103, 0.15);
    border: 1px solid rgba(214, 160, 103, 0.3);
    border-radius: 12px;
    text-align: center;
}

.duration-suitable p {
    color: var(--color-white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.duration-suitable p strong {
    color: var(--color-secondary);
    font-style: normal;
}

/* Checkout Page */
#checkout {
    padding: 100px 0 60px;
}

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

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.checkout-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
    position: relative;
}

.checkout-form-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.checkout-summary-card {
    position: sticky;
    top: 100px;
    align-self: start;
    background: linear-gradient(135deg, rgba(214, 160, 103, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(214, 160, 103, 0.3);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 10;
}

.summary-sticky {
    position: relative;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item.total {
    border-bottom: none;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 10px;
}

.summary-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.summary-value {
    color: var(--color-white);
    font-weight: 600;
    text-align: right;
}

.summary-item.total .summary-value {
    color: var(--color-secondary);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Checkout Product Items */
.checkout-products-container {
    width: 100%;
    margin-bottom: 15px;
}

.checkout-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-product-item:last-child {
    border-bottom: none;
}

.checkout-product-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    flex-shrink: 0;
}

.checkout-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkout-product-name {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.checkout-product-quantity {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.checkout-product-price {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 16px;
}

/* Checkout Checkup Items */
.checkout-checkup-container {
    width: 100%;
    margin-bottom: 15px;
}

.checkout-checkup-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-checkup-item:last-child {
    border-bottom: none;
}

.checkout-checkup-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    flex-shrink: 0;
}

.checkout-checkup-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkout-checkup-name {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.checkout-checkup-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.checkout-checkup-date span {
    color: var(--color-secondary);
    font-weight: 600;
}

/* VA/QRIS Popup Styles */
.va-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.va-popup.hidden {
    display: none;
}

.va-popup.active {
    opacity: 1;
    visibility: visible;
}

body.va-popup-open {
    overflow: hidden !important;
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

html.va-popup-open {
    overflow: hidden;
    height: 100%;
    position: relative;
}

body.va-popup-open .main-content,
body.va-popup-open .page,
body.va-popup-open header {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body.va-popup-open,
html.va-popup-open,
body.va-popup-open * {
    transition: none !important;
    animation: none !important;
}

.va-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
}

.va-popup-content {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(63, 87, 75, 0.98) 100%);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 30px);
    max-width: 500px;
    width: 85%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: clamp(10px, 2vh, 20px) auto;
}

.va-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.va-popup-title {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.va-popup-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.va-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.va-popup-close svg {
    width: 20px;
    height: 20px;
}

.va-popup-body {
    margin-bottom: 25px;
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    max-height: calc(90vh - 250px);
    -webkit-overflow-scrolling: touch;
    padding-right: 5px;
    overflow-x: hidden;
}

.va-bank-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.va-bank-logo {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px;
}

.va-bank-name {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.va-account-section {
    margin-bottom: 25px;
}

.va-account-section.hidden {
    display: none !important;
}

.va-account-label,
.va-qr-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.va-account-number {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
    word-break: break-all;
}

.va-copy-btn {
    width: 100%;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.va-copy-btn:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 160, 103, 0.4);
}

.va-qr-section {
    margin-bottom: 25px;
}

.va-qr-section.hidden {
    display: none !important;
}

.va-qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: clamp(15px, 2vw, 20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 100%;
    overflow: hidden;
}

.va-qr-code {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 300px;
    object-fit: contain;
}

.va-amount-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.va-amount-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.va-amount {
    color: var(--color-secondary);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.va-instructions {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.va-instructions h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.va-instructions ol {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 20px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.va-instructions li {
    margin-bottom: 8px;
}

.va-popup-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(63, 87, 75, 0.98) 100%);
    padding-bottom: 10px;
}

.va-cancel-btn,
.va-complete-btn {
    flex: 1;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.va-cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.va-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.va-complete-btn {
    background: var(--color-secondary);
    color: var(--color-white);
}

.va-complete-btn:hover:not(:disabled) {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 160, 103, 0.4);
}

.va-complete-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.va-complete-btn .loading-spinner {
    width: 20px;
    height: 20px;
}

.summary-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

.summary-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Checkout Form */
.form-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(214, 160, 103, 0.1);
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.payment-category {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-category-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(214, 160, 103, 0.4);
    font-family: 'Inter', sans-serif;
}

.payment-category-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 15px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 100px;
}

.payment-card:hover {
    border-color: var(--color-secondary);
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(214, 160, 103, 0.2);
    transform: translateY(-2px);
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--color-secondary);
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(214, 160, 103, 0.3);
    transform: translateY(-2px);
}

.payment-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.payment-card span {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Checkout Actions */
.checkout-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.back-to-subscription-btn,
.checkout-submit-btn {
    flex: 1;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.back-to-subscription-btn {
    background-color: var(--color-white);
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.back-to-subscription-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.checkout-submit-btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.checkout-submit-btn:hover:not(:disabled) {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 160, 103, 0.4);
}

.checkout-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
}

.loading-spinner.hidden {
    display: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Page Content Animation */
.page.active .container {
    animation: contentFadeIn 0.8s ease 0.2s both;
}

.page.active .page-header {
    animation: slideDownFade 0.6s ease 0.3s both;
}

.page.active .features-grid,
.page.active .services-grid,
.page.active .subscription-cards,
.page.active .pricing-content,
.page.active .contact-content,
.page.active .checkout-content {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.page.active .feature-card,
.page.active .service-card,
.page.active .subscription-card {
    animation: cardFadeIn 0.6s ease both;
}

.page.active .feature-card:nth-child(1),
.page.active .service-card:nth-child(1),
.page.active .subscription-card:nth-child(1) {
    animation-delay: 0.5s;
}

.page.active .feature-card:nth-child(2),
.page.active .service-card:nth-child(2),
.page.active .subscription-card:nth-child(2) {
    animation-delay: 0.6s;
}

.page.active .feature-card:nth-child(3),
.page.active .service-card:nth-child(3),
.page.active .subscription-card:nth-child(3) {
    animation-delay: 0.7s;
}

.page.active .feature-card:nth-child(4),
.page.active .subscription-card:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-btn {
        display: none !important;
    }
    
    .auth-buttons .cart-btn {
        display: none !important;
    }
    
    .header .container {
        justify-content: space-between;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        display: flex;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
        align-items: center;
    }
    
    .mobile-nav .nav-link {
        justify-content: center;
        text-align: center;
    }
    
    .mobile-nav .nav-link span {
        text-align: center;
        width: 100%;
    }
    
    /* Make home page more visually appealing on mobile */
    #home {
        position: relative;
        overflow: hidden;
    }
    
    #home::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(214, 160, 103, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }
    
    #home::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -15%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(214, 160, 103, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }
    
    .hero-section {
        position: relative;
        z-index: 1;
        background: linear-gradient(135deg, var(--color-primary) 0%, rgba(63, 87, 75, 0.95) 50%, var(--color-primary) 100%);
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .btn-primary,
    .btn-secondary {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    #home {
        height: auto;
        min-height: calc(100vh - 70px);
        max-height: none;
        overflow: visible;
    }
    
    /* Allow scrolling on mobile for home page */
    body.home-active {
        overflow-y: auto !important;
        position: relative !important;
        height: auto !important;
    }
    
    html.home-active {
        overflow-y: auto !important;
        height: auto !important;
    }
    
    .hero-section {
        padding: 40px 20px 25px;
        background: 
            linear-gradient(135deg, var(--color-primary) 0%, rgba(63, 87, 75, 0.95) 50%, var(--color-primary) 100%),
            radial-gradient(circle at 20% 30%, rgba(214, 160, 103, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        background-size: 100% 100%, 100% 100%, 100% 100%;
        position: relative;
        overflow: hidden;
    }
    
    .hero-mobile-decoration {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }
    
    .hero-mobile-decoration::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(ellipse at center, rgba(214, 160, 103, 0.12) 0%, rgba(214, 160, 103, 0.06) 40%, transparent 70%);
        border-radius: 50%;
        top: -100px;
        right: -80px;
        animation: float 8s ease-in-out infinite;
    }
    
    .hero-mobile-decoration::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
        border-radius: 50%;
        bottom: -80px;
        left: -60px;
        animation: float 10s ease-in-out infinite reverse;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }
        50% {
            transform: translate(20px, -20px) scale(1.1);
            opacity: 0.8;
        }
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 25px;
        min-height: auto;
        display: flex !important;
        flex-direction: column-reverse !important;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        z-index: 1;
    }
    
    .hero-text {
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-image {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        transform: none !important;
        margin-top: 20px;
        margin-bottom: 25px;
        padding-bottom: 0;
        transform-origin: center top;
    }
    
    .hero-image-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
    
    .hero-illustration {
        width: 45%;
        max-width: 45%;
        transform: scale(0.9);
        transform-origin: center top;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
        animation: heroImageFloat 4s ease-in-out infinite;
    }
    
    .hero-logo-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 15px;
        transform: scale(0.95);
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
        animation: logoFloat 3s ease-in-out infinite;
    }
    
    @keyframes heroImageFloat {
        0%, 100% {
            transform: scale(0.9) translateY(0px);
        }
        50% {
            transform: scale(0.92) translateY(-8px);
        }
    }
    
    @keyframes logoFloat {
        0%, 100% {
            transform: scale(0.95) translateY(0px);
        }
        50% {
            transform: scale(0.97) translateY(-5px);
        }
    }
    
    .learn-more-button-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        color: var(--color-white);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        font-family: 'Nunito', sans-serif;
        transition: all 0.3s ease;
        width: 100%;
        border: none;
        background: transparent;
    }
    
    .learn-more-button-mobile:hover {
        transform: translateX(5px);
        opacity: 0.9;
    }
    
    .learn-more-button-mobile svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }
    
    .learn-more-button-mobile:hover svg {
        transform: translateX(5px);
    }
    
    .hero-title,
    .hero-description {
        text-align: center;
    }
    
    .hero-logo-img {
        height: 40px;
        width: auto;
    }
    
    .hero-logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }
    
    .hero-logo-top {
        display: flex;
        align-items: center;
        gap: 0;
    }
    
    .hero-logo-get {
        color: var(--color-white);
        font-weight: 700;
        font-size: 1rem;
    }
    
    .hero-logo-cut {
        color: var(--color-secondary);
        font-weight: 700;
        font-size: 1rem;
    }
    
    .hero-logo-pet {
        color: var(--color-white);
        font-weight: 700;
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.3;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        letter-spacing: -0.02em;
        padding: 0 5px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.7;
        padding: 0;
        color: rgba(255, 255, 255, 0.95);
        display: flex;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
        max-width: 100%;
    }
    
    .check-icon {
        width: 24px;
        height: 24px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .hero-buttons {
        gap: 16px;
        flex-direction: column;
        width: 100%;
        margin-bottom: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(214, 160, 103, 0.4);
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }
    
    .learn-more-button-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        color: var(--color-white);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        font-family: 'Nunito', sans-serif;
        transition: all 0.3s ease;
        width: 100%;
        border: none;
        background: transparent;
    }
    
    .learn-more-button-mobile:hover {
        transform: translateX(5px);
        opacity: 0.9;
    }
    
    .learn-more-button-mobile svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }
    
    .learn-more-button-mobile:hover svg {
        transform: translateX(5px);
    }
    
    .footer-section {
        padding: 20px 0;
    }
    
    .social-links {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .social-link.twitter {
        margin-left: 20px;
    }
    
    .footer-info {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .footer-left {
        flex: 1;
        max-width: 100%;
        padding: 20px;
    }
    
    .footer-right {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
        padding: 10px 0 10px 28px;
        line-height: 1.6;
        min-height: 24px;
    }
    
    .service-list li::before {
        width: 18px;
        height: 18px;
        font-size: 14px;
        left: 2px;
        top: 12px;
        transform: translateY(0);
    }
    
    /* Mobile: Adjust service images position */
    .service-card:nth-child(1) .service-img {
        transform: translateY(43px); /* 54px - 11px (naikkan 11px) */
    }
    
    .service-card:nth-child(4) .service-img {
        transform: translateY(29px); /* 39px - 10px (naikkan 10px) */
    }
    
    .pricing-content {
        padding: 20px;
    }
    
    .pricing-columns {
        grid-template-columns: 1fr;
    }
    
    .pricing-divider {
        display: none;
    }
    
    .pricing-category {
        font-size: 1.2rem;
    }
    
    .pricing-list {
        padding: 0;
    }
    
    .pricing-list li {
        font-size: 0.9rem;
        padding: 10px 0 10px 24px;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: flex-start;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: flex;
        width: 100%;
        flex-direction: row;
        min-width: 0;
        justify-content: space-between;
    }
    
    .pricing-list li::before {
        width: 18px;
        height: 18px;
        font-size: 14px;
        left: 0;
        top: 12px;
        transform: translateY(0);
        order: 0;
        flex-shrink: 0;
    }
    
    .pricing-list li .price {
        font-size: 0.85rem;
        text-align: right;
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        align-self: flex-start;
        margin-left: 10px;
        order: 2;
        white-space: nowrap;
        padding-top: 0;
    }
    
    .pricing-list li {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .checkup-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .checkup-title {
        font-size: 1.6rem;
    }
    
    .checkup-subtitle {
        font-size: 0.9rem;
    }
    
    .checkup-content {
        padding: 25px;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .doctor-image {
        width: 120px;
        height: 120px;
    }
    
    .calendar-container {
        padding: 20px;
    }
    
    .calendar-weekday {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
    
    .subscription-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .subscription-card {
        padding: 25px;
    }
    
    .tier-title {
        font-size: 1.3rem;
    }
    
    .tier-features li {
        font-size: 0.85rem;
        padding: 10px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .contact-section {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .contact-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .contact-section-title {
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkout-title {
        font-size: 2rem;
    }
    
    .checkout-subtitle {
        font-size: 1rem;
    }
    
    .summary-title,
    .form-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .form-group input {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .payment-category-title {
        font-size: 0.85rem;
    }
    
    .payment-card span {
        font-size: 0.85rem;
    }
    
    
}

@media (max-width: 480px) {
    .logo-img {
        height: 28px;
    }
    
    .logo-get,
    .logo-cut,
    .logo-pet {
        font-size: 0.85rem;
    }
    
    .logo-text {
        gap: 2px;
    }
    
    #home {
        height: auto;
        min-height: calc(100vh - 70px);
        max-height: none;
        overflow: visible;
    }
    
    /* Allow scrolling on mobile for home page */
    body.home-active {
        overflow-y: auto !important;
        position: relative !important;
        height: auto !important;
    }
    
    html.home-active {
        overflow-y: auto !important;
        height: auto !important;
    }
    
    #home::before {
        width: 250px;
        height: 250px;
        top: -40%;
        right: -25%;
    }
    
    #home::after {
        width: 200px;
        height: 200px;
        bottom: -25%;
        left: -20%;
    }
    
    .hero-section {
        padding: 35px 15px 20px;
        background: linear-gradient(135deg, var(--color-primary) 0%, rgba(63, 87, 75, 0.95) 50%, var(--color-primary) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero-mobile-decoration::before {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -60px;
    }
    
    .hero-mobile-decoration::after {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -50px;
    }
    
    .hero-content {
        gap: 20px;
        min-height: auto;
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    
    .hero-text {
        padding: 0 10px;
    }
    
    .hero-image {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        transform: none !important;
        margin-top: 15px;
        margin-bottom: 20px;
        padding-bottom: 0;
        transform-origin: center top;
    }
    
    .hero-image-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
    }
    
    .hero-illustration {
        width: 40%;
        max-width: 40%;
        transform: scale(0.85);
        transform-origin: center top;
        filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
        animation: heroImageFloatSmall 4s ease-in-out infinite;
    }
    
    .hero-logo-mobile {
        margin-left: 10px;
        transform: scale(0.9);
        filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
        animation: logoFloatSmall 3s ease-in-out infinite;
    }
    
    @keyframes heroImageFloatSmall {
        0%, 100% {
            transform: scale(0.85) translateY(0px);
        }
        50% {
            transform: scale(0.87) translateY(-6px);
        }
    }
    
    @keyframes logoFloatSmall {
        0%, 100% {
            transform: scale(0.9) translateY(0px);
        }
        50% {
            transform: scale(0.92) translateY(-4px);
        }
    }
    
    .hero-logo-img {
        height: 35px;
    }
    
    .hero-logo-get,
    .hero-logo-cut,
    .hero-logo-pet {
        font-size: 0.9rem;
    }
    
    .learn-more-button-mobile {
        font-size: 0.9rem;
        padding: 12px 20px;
        margin-top: 6px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 18px;
        line-height: 1.3;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        letter-spacing: -0.01em;
        padding: 0 5px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.7;
        padding: 0;
        color: rgba(255, 255, 255, 0.95);
        display: flex;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
        max-width: 100%;
    }
    
    .check-icon {
        width: 22px;
        height: 22px;
        filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .hero-buttons {
        gap: 14px;
        flex-direction: column;
        margin-bottom: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 22px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(214, 160, 103, 0.4);
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
    }
    
    .footer-section {
        padding: 15px 0;
    }
    
    .footer-left {
        padding: 15px;
    }
    
    .footer-right {
        display: none;
    }
    
    .learn-more-button-mobile {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .social-links {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .social-link.twitter {
        margin-left: 20px;
    }
    
    .social-link {
        font-size: 0.85rem;
    }
    
    .social-link svg {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .footer-info {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .service-list li {
        font-size: 0.85rem;
        padding: 10px 0 10px 26px;
        line-height: 1.6;
        min-height: 24px;
    }
    
    .service-list li::before {
        width: 16px;
        height: 16px;
        font-size: 12px;
        left: 2px;
        top: 12px;
        transform: translateY(0);
    }
    
    .pricing-content {
        padding: 15px;
    }
    
    .pricing-category {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .pricing-list {
        padding: 0;
    }
    
    .pricing-list li {
        font-size: 0.85rem;
        padding: 10px 0 10px 22px;
        flex-wrap: nowrap;
        gap: 8px;
        align-items: flex-start;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: flex;
        width: 100%;
        flex-direction: row;
        min-width: 0;
        justify-content: space-between;
    }
    
    .pricing-list li::before {
        width: 16px;
        height: 16px;
        font-size: 12px;
        left: 0;
        top: 12px;
        transform: translateY(0);
        order: 0;
        flex-shrink: 0;
    }
    
    .pricing-list li .price {
        font-size: 0.75rem;
        text-align: right;
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: auto;
        align-self: flex-start;
        margin-left: 8px;
        order: 2;
        white-space: nowrap;
        padding-top: 0;
    }
    
    .pricing-list li {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }
    
    .subscription-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .subscription-card {
        padding: 20px;
    }
    
    .tier-title {
        font-size: 1.2rem;
    }
    
    .tier-features li {
        font-size: 0.8rem;
        padding: 8px 0;
        line-height: 1.5;
    }
    
    .tier-suitable {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .tier-suitable p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .tier-select-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .checkout-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .checkout-subtitle {
        font-size: 0.9rem;
    }
    
    .summary-title,
    .form-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .form-group input {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .payment-category-title {
        font-size: 0.8rem;
        padding-bottom: 6px;
    }
    
    .payment-card {
        padding: 15px 10px;
        min-height: 90px;
    }
    
    .payment-card img {
        width: 35px;
        height: 35px;
    }
    
    .payment-card span {
        font-size: 0.8rem;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .back-to-subscription-btn,
    .checkout-submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .duration-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .duration-modal-title {
        font-size: 1.5rem;
    }
    
    .duration-option {
        padding: 20px;
    }
    
    .duration-option-title {
        font-size: 1.1rem;
    }
    
    .duration-price {
        font-size: 1.3rem;
    }
    
    .duration-suitable {
        padding: 15px;
        margin-top: 20px;
    }
    
    .duration-suitable p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .subscription-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .duration-options {
        grid-template-columns: 1fr;
    }
    
    .checkout-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .checkout-form-card {
        order: 2;
        width: 100%;
        flex-shrink: 0;
    }
    
    .checkout-summary-card {
        order: 1;
        position: relative;
        top: 0;
        margin-bottom: 0;
        width: 100%;
        flex-shrink: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-category-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .va-popup-content {
        width: 80%;
        max-width: 450px;
        padding: 25px 20px;
        max-height: 85vh;
        margin: 15px auto;
    }
    
    .va-popup-body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .va-qr-code {
        max-width: 250px;
    }
}

@media (max-width: 1400px) {
    .hero-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    }
    
    .hero-content {
        gap: clamp(15px, 3vw, 30px);
    }
    
    .hero-text {
        padding-top: clamp(30px, 5vh, 60px);
    }
    
    .va-popup-content {
        width: 80%;
        max-width: 450px;
        padding: clamp(18px, 2.5vw, 25px) clamp(15px, 2vw, 20px);
        max-height: 88vh;
    }
    
    .va-popup-body {
        max-height: calc(88vh - 250px);
    }
    
    .va-qr-code {
        max-height: 250px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        transform: none;
        margin-top: 20px;
    }
    
    .va-popup-content {
        width: 75%;
        max-width: 400px;
        padding: 20px 15px;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .checkup-section {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .checkup-title {
        font-size: 1.4rem;
    }
    
    .checkup-subtitle {
        font-size: 0.85rem;
    }
    
    .checkup-content {
        padding: 20px;
    }
    
    .doctor-selection-title,
    .calendar-title {
        font-size: 1.1rem;
    }
    
    .doctor-image {
        width: 100px;
        height: 100px;
    }
    
    .doctor-name {
        font-size: 1rem;
    }
    
    .calendar-container {
        padding: 15px;
    }
    
    .calendar-header {
        margin-bottom: 15px;
    }
    
    .calendar-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .calendar-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .calendar-month-year {
        font-size: 1rem;
    }
    
    .calendar-weekday {
        font-size: 0.75rem;
        padding: 6px 0;
    }
    
    .calendar-days {
        gap: 3px;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
    
    .selected-date-info {
        padding: 15px;
    }
    
    .selected-date-text {
        font-size: 0.9rem;
    }
    
    .btn-book-appointment {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .payment-category-options {
        grid-template-columns: 1fr;
    }
    
    .va-popup-content {
        padding: 15px 12px 20px 12px;
        width: 75%;
        max-width: 320px;
        max-height: 90vh;
        margin: 10px auto;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }
    
    .va-popup-body {
        margin-bottom: 15px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .va-popup-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
        flex-shrink: 0;
    }
    
    .va-popup-title {
        font-size: 1.1rem;
    }
    
    .va-popup-close {
        width: 30px;
        height: 30px;
    }
    
    .va-popup-close svg {
        width: 18px;
        height: 18px;
    }
    
    .va-bank-logo {
        width: 40px;
        height: 40px;
    }
    
    .va-bank-name {
        font-size: 0.9rem;
    }
    
    .va-bank-info {
        padding: 12px;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .va-account-label,
    .va-qr-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .va-account-number {
        font-size: 0.9rem;
        padding: 10px 12px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .va-copy-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .va-qr-container {
        padding: 12px;
    }
    
    .va-qr-code {
        max-width: 160px;
        max-height: 160px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .va-popup-body {
        max-height: calc(90vh - 220px);
    }
    
    .va-amount {
        font-size: 1.2rem;
    }
    
    .va-amount-section {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .va-amount-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .va-instructions {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .va-instructions h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .va-instructions ol {
        font-size: 0.8rem;
        padding-left: 16px;
        line-height: 1.6;
    }
    
    .va-instructions li {
        margin-bottom: 6px;
    }
    
    .va-popup-actions {
        flex-direction: column;
        gap: 8px;
        padding-top: 15px;
        flex-shrink: 0;
        margin-top: auto;
    }
    
    .va-cancel-btn,
    .va-complete-btn {
        width: 100%;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Notification Animations */
@keyframes notificationSlideDown {
    from {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes notificationSlideUp {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
}

/* Notification Close Button */
.notification-close-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    color: white !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 15px !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
}

.notification-close-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1) !important;
}

.notification-close-btn:active {
    transform: scale(0.95) !important;
}

/* Products Section */
.products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(214, 160, 103, 0.2);
}

.products-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;
}

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

.product-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.product-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: 'Nunito', sans-serif;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 160, 103, 0.4);
}

.coming-soon-notice {
    text-align: center;
    padding: 30px;
    background: var(--color-white);
    border: 2px solid var(--color-secondary);
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.coming-soon-notice p {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
    font-style: italic;
    font-family: 'Nunito', sans-serif;
}

/* Cart Button */
.cart-btn {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: var(--color-white);
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 160, 103, 0.4);
}

.cart-icon {
    width: 20px;
    height: 20px;
}

.cart-count {
    background: var(--color-white);
    color: var(--color-secondary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -5px;
}

.mobile-cart-btn {
    background: rgba(214, 160, 103, 0.15);
    color: var(--color-white);
    border: 1px solid rgba(214, 160, 103, 0.3);
    padding: 16px 24px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.mobile-cart-btn:hover {
    background: rgba(214, 160, 103, 0.25);
    transform: translateX(5px);
}

.mobile-cart-btn .cart-icon {
    width: 20px;
    height: 20px;
}

.mobile-cart-btn .cart-count {
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(63, 87, 75, 0.98) 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: visible;
}

.cart-sidebar.active {
    right: 0;
    visibility: visible;
}

.cart-header {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.cart-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: 'Nunito', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cart-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    padding: 8px;
    color: var(--color-white);
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cart-close svg {
    width: 20px;
    height: 20px;
}

.cart-items {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.02);
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: rgba(255, 255, 255, 0.7);
}

.empty-cart-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.5);
}

.cart-item {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
}

.cart-item:hover {
    background: #FFFFFF;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cart-item-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    object-fit: contain;
    background: #f5f5f5;
    padding: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.4;
}

.cart-item-price {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(214, 160, 103, 0.1);
    border-radius: 25px;
    padding: 8px 12px;
    border: 1px solid rgba(214, 160, 103, 0.2);
}

.quantity-btn {
    background: var(--color-secondary);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(214, 160, 103, 0.3);
}

.quantity-btn:hover {
    background: var(--color-secondary-light);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(214, 160, 103, 0.4);
}

.quantity-btn:disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    transform: none;
    opacity: 0.5;
}

.quantity-display {
    min-width: 35px;
    text-align: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.cart-item-remove {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: rgba(231, 76, 60, 0.3);
    border-color: #e74c3c;
    transform: scale(1.1);
}

.cart-item-remove svg {
    width: 18px;
    height: 18px;
}

.cart-footer {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.total-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    font-family: 'Nunito', sans-serif;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: 'Nunito', sans-serif;
    text-shadow: 0 2px 10px rgba(214, 160, 103, 0.3);
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: var(--color-white);
    border: none;
    padding: 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(214, 160, 103, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-checkout:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 160, 103, 0.5);
}

.btn-checkout:disabled {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
}

/* Mobile Responsive for Products */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-add-to-cart {
        width: 100%;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .products-section-title {
        font-size: 1.5rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
}

/* Auth Pages (Login & Sign Up) */
.auth-page {
    display: none;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(63, 87, 75, 0.95) 50%, var(--color-primary) 100%);
    padding: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.auth-page.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px 30px 40px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    flex-shrink: 0;
}

.auth-back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-secondary);
    color: var(--color-primary);
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.auth-back-btn:hover {
    background: var(--color-white);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--color-secondary-light);
}

.auth-back-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.auth-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.auth-logo-img {
    height: 60px;
    width: auto;
}

.auth-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.auth-logo-top {
    display: flex;
    align-items: center;
    gap: 0;
}

.auth-logo-get {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
}

.auth-logo-cut {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
}

.auth-logo-pet {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    font-family: 'Inter', sans-serif;
}

.auth-form-group input {
    padding: 14px 18px;
    border: 2px solid rgba(63, 87, 75, 0.2);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--color-white);
    color: var(--color-text);
}

.auth-form-group input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(214, 160, 103, 0.1);
}

.auth-form-group input::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.auth-submit-btn {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: var(--color-white);
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(214, 160, 103, 0.3);
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 160, 103, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(63, 87, 75, 0.1);
}

.auth-footer p {
    font-size: 14px;
    color: var(--color-text-light);
}

.auth-link {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: var(--color-secondary-light);
    text-decoration: underline;
}

/* Mobile Responsive for Auth Pages */
@media (max-width: 768px) {
    .auth-page.active {
        align-items: center;
        justify-content: center;
        padding-top: 60px;
        padding-bottom: 30px;
    }
    
    .auth-container {
        padding: 20px 20px 40px;
        max-width: 100%;
        margin-top: 0;
    }
    
    #signup.auth-page.active {
        padding-top: 80px;
    }
    
    #signup .auth-container {
        margin-top: 30px;
    }
    
    .auth-content {
        padding: 30px 25px;
    }
    
    #signup .auth-form {
        gap: 16px;
    }
    
    .auth-logo-img {
        height: 50px;
    }
    
    .auth-logo-get,
    .auth-logo-cut,
    .auth-logo-pet {
        font-size: 1.6rem;
    }
    
    .auth-title {
        font-size: 1.6rem;
    }
    
    .auth-back-btn {
        top: 20px;
        left: 20px;
        padding: 10px 18px;
        font-size: 14px;
        z-index: 100;
    }
    
    .auth-back-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .auth-page.active {
        align-items: center;
        justify-content: center;
        padding-top: 60px;
        padding-bottom: 20px;
    }
    
    #signup.auth-page.active {
        padding-top: 80px;
    }
    
    .auth-container {
        padding: 20px 15px 30px;
        margin-top: 0;
    }
    
    #signup .auth-container {
        margin-top: 30px;
    }
    
    .auth-content {
        padding: 25px 20px;
    }
    
    #signup .auth-form {
        gap: 16px;
    }
    
    .auth-logo {
        margin-bottom: 25px;
    }
    
    .auth-logo-img {
        height: 45px;
    }
    
    .auth-logo-get,
    .auth-logo-cut,
    .auth-logo-pet {
        font-size: 1.4rem;
    }
    
    .auth-title {
        font-size: 1.4rem;
    }
    
    .auth-subtitle {
        font-size: 0.9rem;
    }
    
    .auth-back-btn {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 13px;
        z-index: 100;
    }
}

