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

:root {
    /* Professional Luxury Palette */
    --blush-pink: #E8B4C8;
    --nude: #D4C4B9;
    --ivory: #F5F3F0;
    --gold: #D4AF37;
    --dark-nude: #8B7355;
    --white: #FFFFFF;
    --light-gray: #F9F7F5;
    --text-dark: #2C2C2C;
    --text-medium: #666666;
    --text-light: #999999;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --border-light: rgba(0, 0, 0, 0.08);

    /* Professional Fonts */
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--ivory);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.95rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex: 0 0 auto;
}

.nav-search-input {
    width: 220px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text-dark);
    padding: 6px 10px;
    font-size: 0.95rem;
}

.nav-search-input::placeholder {
    color: rgba(44, 44, 44, 0.55);
}

.nav-search-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #C99800);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 160ms ease, filter 160ms ease;
}

.nav-search-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.nav-search-btn:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.35);
    outline-offset: 3px;
}

/* Checkout / Bill */
.checkout-section {
    padding: 4rem 0;
}

.checkout-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 0;
}

.checkout-subtitle {
    margin: 6px 0 0;
    color: var(--text-medium);
}

.checkout-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.checkout-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.8);
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
}

.checkout-link.danger {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.25);
    color: #b02a37;
}

.checkout-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.06);
    padding: 18px;
}

.checkout-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.checkout-table-wrap {
    overflow: auto;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
}

.checkout-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.checkout-table th,
.checkout-table td {
    padding: 12px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    vertical-align: middle;
}

.checkout-table thead th {
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-dark);
    font-weight: 600;
}

.checkout-table .num {
    text-align: right;
}

.checkout-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.checkout-qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.9);
    cursor: pointer;
}

.checkout-qty-input {
    width: 60px;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    text-align: center;
}

.checkout-remove {
    border: 0;
    background: transparent;
    color: rgba(220, 53, 69, 0.95);
    cursor: pointer;
}

.checkout-summary {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(0,0,0,0.18);
    max-width: 420px;
    margin-left: auto;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-dark);
}

.checkout-summary-row strong {
    font-weight: 700;
}

.checkout-add {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.checkout-add-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.checkout-add-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.checkout-select {
    min-width: 260px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
}

.checkout-qty {
    width: 90px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
}

.checkout-primary {
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #C99800);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.checkout-footer {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-whatsapp {
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.checkout-hint {
    color: var(--text-medium);
    font-size: 0.95rem;
    text-align: center;
}

.checkout-empty {
    text-align: center;
    padding: 26px 14px;
}

@media (max-width: 768px) {
    .checkout-table {
        min-width: 640px;
    }

    .checkout-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

.logo h1 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.9rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-a {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(2, 136, 209, 0.3);
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: none;
}

.logo-a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(2, 136, 209, 0.38);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(2, 136, 209, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(2, 136, 209, 0.5);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.75rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    outline: none;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 14px;
    width: calc(100% - 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), #FFD700);
    transition: transform 0.28s ease, opacity 0.28s ease;
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
}

.nav-menu a:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.nav-menu a:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger span {
    margin: 4px 0;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #E3F2FD 0%, #B3E5FC 40%, #81D4FA 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 150, 255, 0.1), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.1;
    animation: slideInDown 1s ease-out;
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: slideInUp 1.1s ease-out;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    letter-spacing: 0.3px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1.2s ease-out;
}

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

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

.cta-button {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #B8860B 50%, #DAA520 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-family: var(--font-sans);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover::after {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Radio Player Section */
.radio-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.radio-player {
    background: var(--white);
    border-radius: 25px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(2, 136, 209, 0.15);
    border-left: 6px solid #0288D1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideIn 0.6s ease-out;
}

.radio-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(2, 136, 209, 0.25);
}

.radio-icon {
    font-size: 5rem;
    color: #0288D1;
    min-width: 100px;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(2, 136, 209, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-player:hover .radio-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(2, 136, 209, 0.7));
}

.radio-content {
    flex: 1;
}

.radio-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.radio-frequency {
    font-size: 1.3rem;
    color: #0288D1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.radio-player-audio {
    width: 100%;
    height: 45px;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.radio-player-audio::-webkit-media-controls-panel {
    background-color: #F0F0F0;
    border-radius: 8px;
}

.radio-player-audio::-webkit-media-controls-play-button {
    background-color: #0288D1;
    border-radius: 50%;
}

.radio-description {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
}

.radio-timings {
    background: linear-gradient(135deg, #E3F2FD 0%, #F0F4FF 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #0288D1;
}

.timings-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.timings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.timing-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timing-day {
    font-size: 1.1rem;
    color: #0288D1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timing-hours {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.current-status {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #D32F2F;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .radio-player {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .radio-icon {
        font-size: 3.5rem;
    }

    .radio-title {
        font-size: 1.8rem;
    }

    .radio-frequency {
        font-size: 1.1rem;
    }

    .radio-player-audio {
        height: 40px;
    }
}

/* Radio Schedule Section */
.radio-schedule-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F3E5F5 0%, #E8EAF6 100%);
    position: relative;
}

.radio-schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.5;
}

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

.radio-schedule-time {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.radio-stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.radio-station-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out backwards;
}

.radio-station-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #0288D1, var(--blush-pink));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-station-card:hover::before {
    transform: scaleX(1);
}

.radio-station-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.3);
}

.radio-station-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.radio-station-icon i {
    font-size: 3rem;
    color: #0288D1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(2, 136, 209, 0.3));
}

.radio-station-card:hover .radio-station-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.radio-station-info {
    text-align: center;
}

.radio-frequency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.radio-station-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.radio-station-card:hover .radio-station-name {
    color: #0288D1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .radio-schedule-section {
        padding: 3rem 0;
    }

    .radio-schedule-header {
        margin-bottom: 3rem;
    }

    .radio-schedule-time {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }

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

    .radio-station-card {
        padding: 2rem 1.5rem;
    }

    .radio-station-icon i {
        font-size: 2.5rem;
    }

    .radio-frequency {
        font-size: 1.6rem;
    }

    .radio-station-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .radio-stations-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .radio-station-card {
        padding: 1.8rem 1.2rem;
    }

    .radio-schedule-time {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
}

/* Back to top (site-wide) */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 74px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    z-index: 999;
    transition: transform 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover {
    filter: brightness(1.03);
    transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.35);
    outline-offset: 3px;
}

.whatsapp-float i {
    font-size: 22px;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b8b, #ffb86c);
    color: #111;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    z-index: 999;
}

.back-to-top:hover {
    filter: brightness(1.02);
    transform: translateY(6px);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(255, 184, 108, 0.55);
    outline-offset: 3px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background-color: #F1F8E9;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    animation: fadeInScale 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--blush-pink));
    border-radius: 2px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.category-card {
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 136, 209, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: #0288D1;
    box-shadow: 0 15px 40px rgba(2, 136, 209, 0.3);
}

/* Category Page Link Styling */
.category-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.category-link:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(2, 136, 209, 0.6));
}

.category-link:hover h3 {
    color: #0288D1;
}

/* Category Page Styles */
.category-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.back-link {
    align-self: flex-start;
    color: #0288D1;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.back-link:hover {
    color: var(--text-dark);
    background: #E3F2FD;
    transform: translateX(-5px);
}

.category-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-dark);
    letter-spacing: 1px;
    animation: slideInDown 0.8s ease-out;
}

.category-count {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.category-card i {
    font-size: 3rem;
    color: #0277BD;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}

.category-card:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(2, 136, 209, 0.6));
}

.category-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: #E3F2FD;
}

.arrivals-section {
    padding: 5rem 0;
    background-color: #E0F2F1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    animation: fadeIn 0.6s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: fadeIn 0.6s ease-out backwards;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.2);
}

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

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.product-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: 30px;
    padding: 0;
    max-width: 1500px;
    width: 99%;
    position: relative;
    height: 95vh;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    border: none;
    display: flex;
    overflow-y: hidden;
}

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

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 20;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F0F0;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--white);
    background: #0288D1;
    transform: rotate(90deg);
}

.modal-image {
    width: 50%;
    height: 95vh;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    grid-column: auto;
    grid-row: auto;
}

.modal-content > div:not(.modal-image) {
    width: 50%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
    grid-column: auto;
}

.modal-category {
    font-size: 1.3rem;
    color: #0288D1;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    grid-column: auto;
}

.modal-category span {
    color: #0288D1;
    font-weight: 600;
}

.modal-price {
    font-size: 3.8rem;
    color: #0288D1;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    grid-column: auto;
}

.modal-description {
    font-size: 1.65rem;
    color: #333;
    line-height: 2.5;
    margin-bottom: 3rem;
    text-align: left;
    background: linear-gradient(135deg, #E3F2FD 0%, #F0F8FF 100%);
    padding: 4rem;
    border-radius: 18px;
    border-left: 6px solid #0288D1;
    grid-column: auto;
    letter-spacing: 0.3px;
}

.modal-buy-btn {
    width: 100%;
    padding: 2.2rem;
    background: linear-gradient(135deg, #0288D1 0%, #0277BD 50%, #01579B 100%);
    color: var(--white);

.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.footer-social a:focus-visible {
    outline: 3px solid rgba(255, 184, 108, 0.55);
    outline-offset: 3px;
}
    border: none;
    border-radius: 14px;
    font-size: 1.65rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(2, 136, 209, 0.4);
    grid-column: auto;
}


.modal-buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(2, 136, 209, 0.5);
}

.modal-buy-btn:active {
    transform: scale(0.98);
}

.product-image {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--nude) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
    padding: 1.8rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-name {
    color: var(--gold);
    transform: translateY(-1px);
}

.product-price {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.3px;
    font-family: var(--font-sans);
}

.buy-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-family: var(--font-sans);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.6s ease;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(2, 136, 209, 0.4);
}

.buy-button:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--blush-pink), var(--gold));
}

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

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.3px;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.whatsapp-link,
.footer-section a {
    color: var(--blush-pink);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
}

.whatsapp-link::after,
.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-link:hover::after,
.footer-section a:hover::after {
    width: 100%;
}

.whatsapp-link:hover,
.footer-section a:hover {
    color: var(--gold);
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--blush-pink);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Sliding Cards Section */
.sliding-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 30%, #80DEEA 100%);
    overflow: hidden;
}

.sliding-container {
    max-width: 100%;
    overflow: hidden;
}

.sliding-cards {
    display: flex;
    gap: 2rem;
    animation: slide 30s linear infinite;
    padding: 2rem;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slide-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.slide-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(2, 136, 209, 0.3);
}

.slide-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-card:hover img {
    transform: scale(1.12);
}

.slide-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-dark);
    padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-card:hover h3 {
    color: #0288D1;
}

.slide-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
}

.slide-btn {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem;
    margin-top: auto;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--gold), #C99800);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.6s ease;
}

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

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.slide-btn:active {
    transform: scale(0.98);
}

/* Reset animation on hover */
.sliding-section:hover .sliding-cards {
    animation: none;
    transform: translateX(0);
}

/* Resume animation when hover ends */
.sliding-section .sliding-cards {
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {
    .nav-search {
        padding: 5px 6px;
        gap: 6px;
    }

    .nav-search-input {
        width: 150px;
        padding: 6px 8px;
        font-size: 0.9rem;
    }

    .nav-search-btn {
        width: 34px;
        height: 34px;
    }

    .slide-card {
        flex: 0 0 250px;
    }

    .slide-card img {
        height: 220px;
    }

    .slide-card h3 {
        font-size: 1.1rem;
        padding: 1rem 1rem 0.5rem;
    }

    .slide-btn {
        margin: 0.8rem 1rem;
        width: calc(100% - 2rem);
        padding: 0.7rem;
        font-size: 0.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        gap: 0;
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-radius: 0 0 15px 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--ivory);
    }

    .hero {
        height: 80vh;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 0.5px;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-card {
        padding: 2rem 1rem;
    }

    .product-image {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .category-header {
        margin-bottom: 2rem;
    }

    .back-link {
        font-size: 0.9rem;
    }
}

/* Smooth Transitions */
a, button {
    transition: all 0.3s ease;
}

/* Product Card Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

.product-card {
    animation: slideIn 0.5s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* Shop Page Styles */
.shop-section {
    padding: 2rem 0 5rem;
    background-color: #F5F3F0;
    min-height: 100vh;
}

.shop-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.shop-header .back-link {
    align-self: flex-start;
    color: #0288D1;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.shop-header .back-link:hover {
    color: var(--text-dark);
    background: #E3F2FD;
    transform: translateX(-5px);
}

.shop-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-dark);
    letter-spacing: 1px;
    animation: slideInDown 0.8s ease-out;
}

.shop-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    animation: slideInUp 0.8s ease-out;
}

.shop-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.products-main {
    width: 100%;
}

/* Cart Sidebar */
.cart-sidebar {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-header {
    background: linear-gradient(135deg, #0288D1, #01579B);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cart-header h2 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: none;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 200px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 2rem 1rem;
}

.cart-item {
    background: #F5F3F0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    animation: slideInUp 0.3s ease-out;
}

.cart-item-info {
    margin-bottom: 0.75rem;
}

.cart-item-info h4 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cart-item-price {
    margin: 0;
    font-size: 0.85rem;
    color: #0288D1;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cart-qty-btn {
    background: #E3F2FD;
    border: none;
    color: #0288D1;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.cart-qty-btn:hover {
    background: #0288D1;
    color: var(--white);
    transform: scale(1.1);
}

.cart-qty {
    width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-total {
    font-weight: 700;
    color: #0288D1;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cart-remove-btn {
    width: 100%;
    padding: 0.5rem;
    background: #ffebee;
    color: #d32f2f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.cart-remove-btn:hover {
    background: #d32f2f;
    color: var(--white);
}

/* Cart Summary */
.cart-summary {
    padding: 1.5rem;
    background: #F5F3F0;
    border-top: 2px solid #E3E3E3;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #666;
}

.summary-divider {
    height: 1px;
    background: #DDD;
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0288D1;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #25D366, #1fa854);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.clear-cart-btn {
    width: 100%;
    padding: 0.75rem;
    background: #ffebee;
    color: #d32f2f;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.clear-cart-btn:hover {
    background: #d32f2f;
    color: var(--white);
}

/* Product Controls in Shop */
.product-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: #F5F3F0;
    border-radius: 8px;
    padding: 0.5rem;
}

.qty-btn {
    background: #E3F2FD;
    border: none;
    color: #0288D1;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 600;
}

.qty-btn:hover {
    background: #0288D1;
    color: var(--white);
    transform: scale(1.1);
}

.qty-input {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    min-width: 40px;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

/* Cart Toggle Button (Mobile) */
.cart-toggle-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0288D1, #01579B);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(2, 136, 209, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 500;
}

.cart-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(2, 136, 209, 0.5);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d32f2f;
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Cart Link in Navigation */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    background: #d32f2f;
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.3s ease-out;
    z-index: 1000;
    display: none;
}

.notification.show {
    display: block;
}

/* Shop Responsive Design */
@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        max-height: 100vh;
        z-index: 999;
        border-radius: 0;
    }

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

    .cart-close {
        display: flex;
    }

    .cart-toggle-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .shop-title {
        font-size: 2rem;
    }

    .shop-subtitle {
        font-size: 1rem;
    }

    .cart-sidebar {
        display: none;
    }

    .cart-sidebar.active {
        display: flex;
        width: 100%;
        max-width: 100%;
    }

    .product-card {
        padding-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .shop-title {
        font-size: 1.5rem;
    }

    .cart-toggle-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .product-controls {
        flex-direction: column;
    }

}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--ivory) 0%, #FFF7F2 45%, #F4F7FF 100%);
    padding: 5rem 0;
    margin: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.10), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(232, 180, 200, 0.14), transparent 40%),
        radial-gradient(circle at 70% 85%, rgba(2, 136, 209, 0.08), transparent 45%);
    pointer-events: none;
}

.reviews-section .section-title {
    color: var(--text-dark);
    margin-bottom: 2.2rem;
    font-size: 2.3rem;
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 1.9rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--blush-pink));
}

.review-card::after {
    content: '“';
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: rgba(212, 175, 55, 0.22);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    border-color: rgba(212, 175, 55, 0.22);
}

.review-card-negative {
    background: rgba(255, 245, 245, 0.92);
}

.review-card-negative .reviewer-name {
    color: #D32F2F;
}

.review-header {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: 0.2px;
}

.reviewer-product {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.review-stars {
    color: #FFD700;
    font-size: 0.95rem;
    letter-spacing: 0.15rem;
    white-space: nowrap;
}

.review-text {
    font-size: 0.98rem;
    color: rgba(44, 44, 44, 0.92);
    line-height: 1.75;
    margin-bottom: 0.75rem;
    font-style: normal;
}

.review-text-en {
    font-size: 0.9rem;
    color: rgba(102, 102, 102, 0.95);
    line-height: 1.65;
}

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

    .reviews-section .section-title {
        font-size: 1.9rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviewer-name {
        font-size: 1rem;
    }
}

/* Logo Link Styles */
.logo-link {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.pagination-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pagination-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;
}

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

.pagination-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.pagination-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6);
    transform: scale(1.1);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pagination-btn.active:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    box-shadow: 0 12px 40px rgba(238, 90, 36, 0.7);
}

@media (max-width: 768px) {
    .pagination-container {
        gap: 0.5rem;
        margin-top: 2rem;
        padding: 0.75rem;
        border-radius: 20px;
    }

    .pagination-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-width: 45px;
        font-weight: 600;
    }

    .logo-link:hover {
        transform: none;
    }
}
