/* ==================== VARIABLES ==================== */
:root {
    --primary-color: #5C4742;
    --secondary-color: #E6A4B4;
    --accent-color: #D4859D;
    --accent-dark: #C67B90;
    --light-pink: #FFF5F7;
    --light-bg: #FFE8EC;
    --light-cream: #F8E8D8;
    --white: #ffffff;
    --text-dark: #5C4742;
    --text-light: #9B8B87;
    --gold: #FFD700;
    --orange: #FFA500;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, #FFF5F7, #FFF9F5, #FFE8EC);
    overflow-x: hidden;
    position: relative;
}

/* Decorative Background Blobs */
.bg-decorations {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #FFE8EC;
    opacity: 0.3;
    top: 100px;
    right: 100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #F5D0C5;
    opacity: 0.2;
    bottom: 100px;
    left: 100px;
    animation-delay: -2s;
}

@keyframes blobFloat {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(20px, -20px); }
}

/* ==================== HEADER ==================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230, 164, 180, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
}

.logo-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkles-pulse {
    font-size: 0.8rem;
    color: var(--secondary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.nav-link.active {
    color: var(--secondary-color);
    font-weight: 600;
    transform: scale(1.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: var(--transition);
}

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

/* Cart Button */
.cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(230, 164, 180, 0.3);
}

.cart-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(230, 164, 180, 0.4);
}

.cart-btn i {
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F5D0C5;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cart-btn {
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    padding: 15px 0;
    gap: 10px;
}

.mobile-nav-link {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(230, 164, 180, 0.3);
}

/* Main content wrapper */
main {
    position: relative;
    z-index: 1;
}

/* ==================== HERO SECTION - SPLIT ==================== */
.hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}

.hero-left {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color), var(--accent-dark));
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    top: 80px;
    right: 80px;
    animation: rotateShape 20s linear infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    bottom: 80px;
    left: 40px;
    animation: rotateShapeReverse 25s linear infinite;
}

@keyframes rotateShape {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1.2); }
}

@keyframes rotateShapeReverse {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(-360deg) scale(1.3); }
}

.hero-right {
    position: relative;
}

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

.hero-overlay-right {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(198, 123, 144, 0.3), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 60px;
}

.hero-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.heart-icon {
    font-size: 3rem;
    color: var(--white);
    animation: heartbeat 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

.crown-icon {
    font-size: 2.5rem;
    color: var(--gold);
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.5));
}

.sparkles-icon {
    font-size: 3rem;
    color: var(--white);
    animation: sparkle 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

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

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

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 24px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn i {
    font-size: 1.3rem;
}

.btn-white {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.btn-dark {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(92, 71, 66, 0.4);
}

.btn-dark:hover {
    transform: scale(1.05) rotate(-2deg);
    background: #4A3935;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 3px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-pink) 50%, var(--light-bg) 100%);
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.features-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    transition: var(--transition);
}

.feature-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 30px;
    transform: rotate(6deg);
    opacity: 0.15;
    transition: var(--transition);
}

.feature-card:hover .feature-card-bg {
    transform: rotate(12deg) scale(1.05);
}

.feature-content {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(230, 164, 180, 0.15);
    border: 2px solid rgba(230, 164, 180, 0.2);
    transition: var(--transition);
}

.feature-card:hover .feature-content {
    transform: translateY(-15px) rotate(2deg);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transform: rotate(-12deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.feature-icon-1 {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.feature-icon-2 {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.feature-icon-3 {
    background: linear-gradient(135deg, var(--accent-dark), var(--secondary-color));
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-pink) 100%);
}

.products-header {
    margin-bottom: 50px;
}

.products-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.products-title-row h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.star-icon, .bolt-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.star-icon {
    animation: starGlow 2s ease-in-out infinite;
}

@keyframes starGlow {
    0%, 100% { filter: drop-shadow(0 0 5px var(--secondary-color)); }
    50% { filter: drop-shadow(0 0 20px var(--secondary-color)); }
}

.bolt-icon {
    color: #F5D0C5;
}

.products-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-left: 60px;
}

/* Asymmetric Grid */
.asymmetric-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 25px;
}

.product-card-large {
    grid-row: span 2;
}

.product-large-wrapper {
    position: relative;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #F9E5E9, #FFE8EC);
}

.product-large-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card-large:hover .product-large-wrapper img {
    transform: scale(1.1);
}

/* Product Card Overlay with Heart */
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: flex-end;
    padding: 15px;
}

.product-card-large:hover .product-card-overlay,
.product-card-small:hover .product-card-overlay,
.product-rental-wrapper:hover .product-card-overlay {
    opacity: 1;
}

.product-card-heart {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-card-heart i {
    color: #9B8B87;
    font-size: 1.1rem;
    transition: var(--transition);
}

.product-card-heart:hover {
    transform: scale(1.2);
}

.product-card-heart:hover i,
.product-card-heart.liked i {
    color: #E6A4B4;
}

/* Sparkle effect */
.product-sparkle {
    position: absolute;
    top: 15px;
    left: 15px;
    animation: sparkleRotate 3s linear infinite;
}

.product-sparkle i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

@keyframes sparkleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(230, 164, 180, 0.95) 0%, rgba(230, 164, 180, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.product-card-large:hover .product-overlay {
    opacity: 1;
}

.product-info-large {
    color: var(--white);
}

.product-info-large h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-info-large p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
}

.btn-view {
    background: var(--white);
    color: var(--secondary-color);
    padding: 12px 28px;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition);
}

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

.product-badge-top {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: badgeSpin 10s linear infinite;
}

.product-badge-top span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
}

@keyframes badgeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.products-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-card-small {
    flex: 1;
}

.product-small-wrapper {
    position: relative;
    height: 100%;
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #F9E5E9, #FFE8EC);
}

.product-small-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card-small:hover .product-small-wrapper img {
    transform: scale(1.1);
}

.product-overlay-small {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212, 133, 157, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card-small:hover .product-overlay-small {
    opacity: 1;
}

.product-info-small {
    color: var(--white);
}

.product-info-small h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-info-small span {
    font-size: 1.3rem;
    font-weight: 600;
}

.product-card-rental {
    grid-column: span 1;
}

.product-rental-wrapper {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #F9E5E9, #FFE8EC);
}

.product-rental-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card-rental:hover .product-rental-wrapper img {
    transform: scale(1.1);
}

.product-overlay-rental {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 208, 197, 0.9), rgba(230, 164, 180, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card-rental:hover .product-overlay-rental {
    opacity: 1;
}

.rental-content {
    text-align: center;
    color: var(--white);
    padding: 30px;
}

.rental-content i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.rental-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.rental-content p {
    font-size: 1rem;
    margin-bottom: 12px;
}

.price-rental {
    font-size: 1.6rem;
    font-weight: 700;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color), var(--accent-dark));
    border-radius: 24px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 25px 60px rgba(230, 164, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-heart {
    animation: heartBeat 4s ease-in-out infinite;
    margin-bottom: 20px;
}

.cta-heart i {
    font-size: 4rem;
    color: var(--white);
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

.cta-content h3 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-white-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 18px 36px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-white-large:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.btn-white-large i {
    font-size: 1.2rem;
}

/* ==================== RENTAL PAGE ==================== */
.rental-page {
    min-height: 100vh;
}

/* Rental Header */
.rental-header {
    position: relative;
    background: linear-gradient(135deg, #F5D0C5, #FFD4E5, #F8E8D8);
    padding: 100px 0 80px;
    overflow: hidden;
}

.floating-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-heart {
    position: absolute;
    opacity: 0.2;
    animation: floatHeart 3s ease-in-out infinite;
}

.floating-heart i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes floatHeart {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(10deg); 
    }
    50% { 
        transform: translateY(0) translateX(0) rotate(0deg); 
    }
    75% { 
        transform: translateY(-15px) translateX(-10px) rotate(-10deg); 
    }
}

.rental-header-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.rental-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rental-icon {
    position: relative;
    margin-bottom: 25px;
}

.rental-icon > i {
    font-size: 5rem;
    color: var(--white);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    animation: iconBounce 2s ease-in-out infinite;
}

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

.rental-zap {
    position: absolute;
    top: -15px;
    right: -20px;
    animation: zapPulse 1.5s ease-in-out infinite;
}

.rental-zap i {
    font-size: 2.5rem;
    color: var(--gold);
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.5));
}

@keyframes zapPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.rental-header h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.rental-header p {
    font-size: 1.5rem;
    color: rgba(92, 71, 66, 0.8);
    max-width: 600px;
    margin-bottom: 35px;
}

/* Duration Selector */
.duration-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.duration-btn {
    position: relative;
    padding: 18px 35px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.6);
    color: var(--primary-color);
}

.duration-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

.duration-btn.active {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--gold);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Curved Divider */
.curved-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.curved-divider svg {
    width: 100%;
    height: 100px;
}

/* Rental Content */
.rental-content {
    background: var(--light-pink);
    padding: 60px 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, #FFD4E5, #FFE8EC);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--white);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.benefit-1 {
    background: linear-gradient(135deg, #FFD4E5, #FFE8EC);
}

.benefit-2 {
    background: linear-gradient(135deg, #F5D0C5, #F8E8D8);
}

.benefit-3 {
    background: linear-gradient(135deg, var(--secondary-color), #F5D0C5);
}

.benefit-3 .benefit-icon {
    background: var(--white);
}

.benefit-3 .benefit-icon i {
    color: var(--secondary-color);
}

.benefit-3 h3,
.benefit-3 p {
    color: var(--white);
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.9);
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.benefit-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Filter Section */
.filter-section {
    margin-bottom: 40px;
}

.filter-box {
    background: linear-gradient(135deg, var(--white), #FFF9F5);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(230, 164, 180, 0.2);
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.filter-icon {
    background: linear-gradient(135deg, #F5D0C5, var(--secondary-color));
    padding: 15px;
    border-radius: 16px;
    animation: rotateIcon 4s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.filter-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.filter-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.filter-title p {
    color: var(--text-light);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    position: relative;
    padding: 16px 35px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgba(230, 164, 180, 0.3);
    background: var(--white);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.filter-btn span {
    margin-right: 8px;
}

.filter-btn:hover {
    background: #F9E5E9;
    border-color: var(--secondary-color);
    transform: scale(1.05) rotate(3deg);
}

.filter-btn.active {
    background: linear-gradient(135deg, #F5D0C5, var(--secondary-color));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(230, 164, 180, 0.4);
}

/* Masonry Grid */
.masonry-grid {
    columns: 4 300px;
    column-gap: 25px;
}

.rental-product {
    break-inside: avoid;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(230, 164, 180, 0.2);
    transition: var(--transition);
}

.rental-product:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.rental-product-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F9E5E9, #FFE8EC);
}

/* Image fallback styles */
.img-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F9E5E9, #FFE8EC);
}

.img-fallback svg {
    opacity: 0.7;
}

.rental-product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.rental-product:hover .rental-product-image img {
    transform: scale(1.15);
}

.product-floating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: badgeFloat 2s ease-in-out infinite;
}

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

.product-heart {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rental-product:hover .product-heart {
    opacity: 1;
}

.product-heart:hover {
    transform: scale(1.2);
}

.product-heart i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.rental-product-info {
    padding: 25px;
}

.rental-product-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.rental-product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.rental-product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-days {
    font-size: 0.75rem;
    color: #F5D0C5;
}

.btn-rent-now {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #F5D0C5, var(--secondary-color));
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(230, 164, 180, 0.4);
}

.btn-rent-now:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(230, 164, 180, 0.5);
}

.size-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-tags span {
    padding: 6px 14px;
    background: #F9E5E9;
    color: var(--secondary-color);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #6B5651);
    overflow: hidden;
}

.newsletter-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    opacity: 0.15;
    top: -100px;
    right: -100px;
    animation: blobMove 15s ease-in-out infinite;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #F5D0C5;
    opacity: 0.12;
    bottom: -80px;
    left: -80px;
    animation: blobMoveReverse 12s ease-in-out infinite;
}

@keyframes blobMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

@keyframes blobMoveReverse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.newsletter-stars i {
    font-size: 2rem;
    color: var(--gold);
    animation: starTwinkle 2s ease-in-out infinite;
}

.newsletter-stars i:nth-child(2) {
    font-size: 2.5rem;
    animation-delay: 0.5s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 20px 30px;
    border-radius: 20px;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--primary-color);
    background: var(--white);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 164, 180, 0.4);
}

.btn-pink {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 20px 35px;
    font-size: 1.1rem;
}

.btn-pink:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(230, 164, 180, 0.4);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #7A635A);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #FFE8EC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

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

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.75;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 8px;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .asymmetric-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-card-large {
        grid-row: span 1;
    }
    
    .products-stack {
        flex-direction: row;
    }
    
    .product-card-small {
        height: 250px;
    }

    .masonry-grid {
        columns: 3 250px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-icons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-card {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .products-title-row h2 {
        font-size: 3rem;
    }

    .masonry-grid {
        columns: 2 280px;
    }
}

@media (max-width: 768px) {
    .main-header .header-container {
        padding: 0 15px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: flex;
        padding-bottom: 20px;
    }

    .cart-btn span {
        display: none;
    }

    .cart-btn {
        padding: 10px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-card {
        padding: 30px;
    }
    
    .btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .features-title,
    .products-title-row h2,
    .rental-header h1 {
        font-size: 2.5rem;
    }

    .rental-header p {
        font-size: 1.2rem;
    }

    .masonry-grid {
        columns: 1 1fr;
    }

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

    .asymmetric-grid {
        grid-template-columns: 1fr;
    }
    
    .products-stack {
        flex-direction: column;
    }
    
    .product-card-small {
        height: 250px;
    }
    
    .product-large-wrapper {
        height: 450px;
    }
    
    .product-rental-wrapper {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-content {
        padding: 40px 25px;
    }
    
    .features-title,
    .products-title-row h2 {
        font-size: 2rem;
    }
    
    .products-subtitle {
        margin-left: 0;
    }

    .rental-header h1 {
        font-size: 2.2rem;
    }

    .duration-selector {
        flex-direction: column;
    }

    .duration-btn {
        width: 100%;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .newsletter-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }

    /* ==================== CART PAGE ==================== */
    .cart-page {
        padding: 60px 0;
        min-height: 80vh;
        background: var(--light-pink);
    }

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

    .cart-title-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .cart-sparkle i {
        font-size: 2rem;
        color: var(--secondary-color);
        animation: sparkleRotate 3s linear infinite;
    }

    .cart-header h1 {
        font-family: var(--font-heading);
        font-size: 3rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .btn-clear-cart {
        padding: 12px 25px;
        border: 2px solid #e74c3c;
        background: transparent;
        color: #e74c3c;
        border-radius: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-clear-cart:hover {
        background: #e74c3c;
        color: white;
    }

    /* Empty Cart */
    .cart-empty {
        text-align: center;
        padding: 80px 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .empty-icon {
        margin-bottom: 30px;
    }

    .empty-icon i {
        font-size: 5rem;
        color: var(--secondary-color);
        animation: bounce 2s ease-in-out infinite;
    }

    .cart-empty h2 {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .cart-empty p {
        color: var(--text-light);
        margin-bottom: 30px;
    }

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

    .btn-outline {
        padding: 15px 30px;
        border: 2px solid var(--secondary-color);
        background: transparent;
        color: var(--secondary-color);
        border-radius: 15px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
    }

    .btn-outline:hover {
        background: var(--secondary-color);
        color: white;
    }

    /* Cart Content */
    .cart-content {
        display: block;
    }

    .cart-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }

    .cart-items {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .cart-section {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border: 2px solid rgba(230, 164, 180, 0.2);
    }

    .rental-section {
        background: linear-gradient(135deg, #F9E5E9, #FFE8EC);
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }

    .section-header i {
        font-size: 1.5rem;
        color: var(--secondary-color);
    }

    .section-header h2 {
        font-size: 1.5rem;
        color: var(--primary-color);
        font-weight: 700;
    }

    /* Order Summary */
    .order-summary {
        position: sticky;
        top: 100px;
    }

    .summary-card {
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        border-radius: 24px;
        padding: 35px;
        box-shadow: 0 20px 60px rgba(230, 164, 180, 0.3);
        color: white;
    }

    .summary-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }

    .summary-header i {
        font-size: 1.5rem;
    }

    .summary-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .summary-totals {
        margin-bottom: 20px;
    }

    .summary-item {
        display: flex;
        justify-content: space-between;
        padding: 15px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .summary-item p {
        opacity: 0.9;
    }

    .summary-item span {
        font-weight: 700;
        font-size: 1.2rem;
    }

    .summary-total {
        border-top: 2px solid rgba(255, 255, 255, 0.3);
        padding-top: 20px;
        margin-bottom: 25px;
    }

    .total-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .total-row span {
        font-size: 1.2rem;
    }

    .total-amount {
        font-size: 2rem !important;
        font-weight: 800;
    }

    .rental-note {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .btn-checkout {
        width: 100%;
        padding: 18px;
        background: white;
        color: var(--secondary-color);
        border: none;
        border-radius: 18px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-bottom: 15px;
    }

    .btn-checkout:hover {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .btn-continue {
        display: block;
        text-align: center;
        padding: 15px;
        border: 2px solid white;
        color: white;
        border-radius: 18px;
        font-weight: 600;
        transition: var(--transition);
    }

    .btn-continue:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Cart Responsive */
    @media (max-width: 1024px) {
        .cart-grid {
            grid-template-columns: 1fr;
        }

        .order-summary {
            position: static;
        }
    }

    @media (max-width: 768px) {
        .cart-header {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .cart-header h1 {
            font-size: 2rem;
        }
    }

    /* Cart Item Styles */
    .cart-item {
        display: grid;
        grid-template-columns: 80px 1fr auto auto auto;
        gap: 20px;
        align-items: center;
        padding: 20px;
        background: var(--white);
        border-radius: 18px;
        margin-bottom: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 2px solid rgba(230, 164, 180, 0.1);
        transition: var(--transition);
    }

    .cart-item:hover {
        border-color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
        border-radius: 14px;
        overflow: hidden;
        background: linear-gradient(135deg, #F9E5E9, #FFE8EC);
    }

    .cart-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cart-item-details h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .cart-item-meta {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .cart-item-quantity {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--light-pink);
        padding: 8px 15px;
        border-radius: 12px;
    }

    .cart-item-quantity button {
        width: 32px;
        height: 32px;
        border: none;
        background: var(--white);
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        color: var(--secondary-color);
    }

    .cart-item-quantity button:hover {
        background: var(--secondary-color);
        color: var(--white);
    }

    .cart-item-quantity span {
        font-weight: 700;
        min-width: 25px;
        text-align: center;
    }

    .cart-item-price span {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--secondary-color);
    }

    .cart-item-remove {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: #FFF5F7;
        color: var(--text-light);
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cart-item-remove:hover {
        background: #FFE8EC;
        color: var(--secondary-color);
        transform: scale(1.1);
    }

    /* Improved Cart Item Styles */
    .cart-item-improved {
        display: grid;
        grid-template-columns: 80px 1fr auto auto auto;
        gap: 20px;
        align-items: center;
        padding: 20px;
        background: var(--white);
        border-radius: 18px;
        margin-bottom: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 2px solid rgba(230, 164, 180, 0.1);
        transition: var(--transition);
    }

    .cart-item-improved:hover {
        border-color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .cart-item-image-improved {
        width: 80px;
        height: 80px;
        border-radius: 14px;
        overflow: hidden;
        background: linear-gradient(135deg, #F9E5E9, #FFE8EC);
    }

    .cart-item-image-improved img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cart-item-details-improved h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .cart-item-meta-improved {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-bottom: 4px;
    }

    .cart-item-meta-improved span {
        color: var(--secondary-color);
        font-weight: 600;
    }

    .cart-item-price-improved {
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .cart-item-quantity-improved {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--light-pink);
        padding: 8px 15px;
        border-radius: 12px;
    }

    .cart-item-quantity-improved .qty-btn {
        width: 32px;
        height: 32px;
        border: none;
        background: var(--white);
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        color: var(--secondary-color);
    }

    .cart-item-quantity-improved .qty-btn:hover {
        background: var(--secondary-color);
        color: var(--white);
    }

    .cart-item-quantity-improved span {
        font-weight: 700;
        min-width: 25px;
        text-align: center;
    }

    .cart-item-total span {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--secondary-color);
    }

    .cart-item-remove-improved {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: #FFF5F7;
        color: var(--text-light);
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cart-item-remove-improved:hover {
        background: #FFE8EC;
        color: var(--secondary-color);
        transform: scale(1.1);
    }

    .rental-item {
        border-left: 4px solid var(--gold);
        background: linear-gradient(135deg, #FFFBF0, #FFF5F7);
    }

    .rental-item:hover {
        border-left-color: var(--orange);
    }

    /* Responsive Cart Items */
    @media (max-width: 900px) {
        .cart-item {
            grid-template-columns: 70px 1fr auto;
            gap: 15px;
        }

        .cart-item-quantity {
            grid-column: 2;
        }

        .cart-item-price {
            grid-column: 3;
            grid-row: 1;
        }

        .cart-item-remove {
            position: absolute;
            right: 10px;
            top: 10px;
        }

        .cart-item {
            position: relative;
            padding-right: 50px;
        }
    }

    @media (max-width: 600px) {
        .cart-item {
            grid-template-columns: 60px 1fr;
        }

        .cart-item-quantity {
            grid-column: 1 / -1;
            justify-content: center;
        }

        .cart-item-price {
            grid-column: 2;
            grid-row: 2;
        }
    }
}
