/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf9f6;
}

/* Capybara Color Palette */
:root {
    --capybara-brown: #8B6F47;
    --capybara-beige: #D4B896;
    --capybara-green: #7A9B76;
    --capybara-mint: #B8D4B8;
    --capybara-coral: #E8A87C;
    --capybara-blue: #74b9ff;
    --capybara-dark: #2c3e50;
    --cinnamoroll-blue: #87CEEB;
    --cinnamoroll-white: #F8F8FF;
    --cinnamoroll-pink: #FFB6C1;
}

/* Header and Navigation */
header,
header.navbar,
.navbar.fixed-top,
nav.navbar {
    background: linear-gradient(135deg, 
        #D4B896 0%,     /* Capybara beige */
        #B8D4B8 25%,    /* Capybara mint green */
        #B3D9FF 50%,    /* Cinnamoroll sky blue */
        #E6F3FF 75%,    /* Cinnamoroll light blue */
        #CBC3E3 100%    /* Kuromi light purple */
    ) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ecf0f1;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
    animation: float 3s ease-in-out infinite;
}

.capybara-emoji {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #e74c3c;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    color: #ecf0f1;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #e74c3c;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Cash Only Banner */
.cash-only-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.6) 0%, rgba(192, 57, 43, 0.6) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 4rem;
    letter-spacing: 8px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
    z-index: 10002;
    animation: cashBannerSlide 0.5s ease-out;
    user-select: none;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.cash-only-banner.hidden {
    display: none;
}

.cash-only-text {
    white-space: nowrap;
    transform: rotate(-45deg);
    text-align: center;
    padding: 20px;
    border: 5px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
}

@keyframes cashBannerSlide {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cashBannerFadeOut {
    0% {
        transform: translate(-50%, -50%) rotate(-45deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(-45deg) scale(0.8);
        opacity: 0;
    }
}

/* Cash Only Page */
.cash-only-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    z-index: 10003;
    animation: modalFadeIn 0.3s ease;
    overflow-y: auto;
}

.cash-only-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cash-only-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cash-only-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.cash-only-header h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 4px;
}

.cash-only-header p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.cash-only-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    flex: 1;
    margin-bottom: 2rem;
}

.payment-info h2,
.cart-summary-cash h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.payment-item h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.payment-item p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.cash-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cash-cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cash-item-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cash-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cash-item-name {
    font-weight: 600;
}

.cash-item-qty {
    opacity: 0.8;
    font-size: 0.9rem;
}

.cash-item-price {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Item Selection Styles */
.selection-instruction {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.item-checkbox-container {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.item-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #27ae60;
}

.checkbox-label {
    margin-left: 0.5rem;
    cursor: pointer;
}

.selection-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.select-all-btn,
.deselect-all-btn {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.select-all-btn:hover {
    background: rgba(39, 174, 96, 0.8);
    border-color: #27ae60;
}

.deselect-all-btn:hover {
    background: rgba(231, 76, 60, 0.8);
    border-color: #e74c3c;
}

.cash-total {
    text-align: right;
    font-size: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cash-only-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
}

.back-to-cart-btn-cash,
.continue-shopping-btn-cash,
.place-cash-order-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-cart-btn-cash {
    background: transparent;
    color: white;
}

.back-to-cart-btn-cash:hover {
    background: white;
    color: #e74c3c;
}

.continue-shopping-btn-cash {
    background: white;
    color: #e74c3c;
}

.continue-shopping-btn-cash:hover {
    background: transparent;
    color: white;
}

.place-cash-order-btn {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
}

.place-cash-order-btn:hover {
    background: #2ecc71;
    border-color: #2ecc71;
    transform: translateY(-2px);
}

/* Responsive design for cash only page */
@media (max-width: 768px) {
    .cash-only-page-content {
        padding: 1rem;
    }
    
    .cash-only-header h1 {
        font-size: 2.5rem;
    }
    
    .cash-only-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cash-only-footer {
        flex-direction: column;
        align-items: center;
    }
    
    .back-to-cart-btn-cash,
    .continue-shopping-btn-cash,
    .place-cash-order-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Customer Info Modal */
.customer-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10004;
    animation: modalFadeIn 0.3s ease;
}

.customer-info-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.customer-info-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.customer-info-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.customer-info-body {
    padding: 2rem;
}

.customer-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.order-summary-small {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
}

.order-summary-small h3 {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.summary-items {
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.summary-total {
    text-align: right;
    font-size: 1.25rem;
    color: #e74c3c;
    padding-top: 1rem;
    border-top: 2px solid #e74c3c;
}

.customer-info-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cancel-order-btn,
.confirm-order-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cancel-order-btn {
    background: #6c757d;
    color: white;
}

.cancel-order-btn:hover {
    background: #5a6268;
}

.confirm-order-btn {
    background: #27ae60;
    color: white;
}

.confirm-order-btn:hover {
    background: #2ecc71;
}

/* Cash Order Confirmation Modal */
.cash-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10005;
    animation: modalFadeIn 0.3s ease;
    overflow-y: auto;
}

.cash-confirmation-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    margin: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.confirmation-header {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.confirmation-header .success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.confirmation-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.confirmation-body {
    padding: 2rem;
}

.order-info-card,
.pickup-instructions {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid #e9ecef;
}

.order-info-card h3,
.pickup-instructions h3 {
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 0.5rem;
}

.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.info-label {
    font-weight: bold;
    color: #666;
}

.info-value {
    color: #333;
}

.info-value.total-amount {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
}

.info-value.status {
    color: #f39c12;
    font-weight: bold;
}

.order-notes {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
}

.pickup-instructions ul {
    list-style: none;
    padding: 0;
}

.pickup-instructions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.capybara-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    border-radius: 15px;
    margin: 2rem 0;
}

.capybara-celebration {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.confirmation-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.print-order-btn,
.continue-shopping-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #333;
    background: white;
    color: #333;
}

.print-order-btn:hover,
.continue-shopping-btn:hover {
    background: #333;
    color: white;
}

/* Responsive Design for Customer Forms */
@media (max-width: 768px) {
    .customer-info-content,
    .cash-confirmation-content {
        width: 95%;
        margin: 1rem;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
    }
    
    .customer-info-footer,
    .confirmation-footer {
        flex-direction: column;
    }
    
    .cancel-order-btn,
    .confirm-order-btn,
    .print-order-btn,
    .continue-shopping-btn {
        width: 100%;
    }
}

/* Search Bar */
.search-container {
    position: relative;
    margin: 0 2rem;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 0.3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.search-bar:hover,
.search-bar:focus-within {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

#searchInput {
    border: none;
    outline: none;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    width: 250px;
    background: transparent;
    color: var(--capybara-brown);
}

#searchInput::placeholder {
    color: #999;
}

#searchButton {
    background: var(--capybara-coral);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

#searchButton:hover {
    background: var(--capybara-brown);
    transform: scale(1.05);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 0.5rem;
}

.search-results.hidden {
    display: none;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid var(--capybara-beige);
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:hover {
    background: var(--capybara-beige);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 50px;
    height: 50px;
    background: var(--capybara-beige);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.search-result-info h4 {
    margin: 0 0 0.2rem 0;
    color: var(--capybara-brown);
    font-size: 1rem;
}

.search-result-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.search-result-price {
    margin-left: auto;
    color: var(--capybara-coral);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--capybara-green) 0%, var(--capybara-mint) 100%);
    color: white;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capybara-hero {
    font-size: 12rem;
    opacity: 0.7;
    animation: wiggle 4s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.cta-button {
    background: var(--capybara-coral);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 168, 124, 0.3);
}

.cta-button:hover {
    background: #D4956B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 124, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--capybara-dark);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #D4B896 0%,     /* Capybara beige */
        #B8D4B8 25%,    /* Capybara mint green */
        #B3D9FF 50%,    /* Cinnamoroll sky blue */
        #E6F3FF 75%,    /* Cinnamoroll light blue */
        #CBC3E3 100%    /* Kuromi light purple */
    );
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(139, 111, 71, 0.1) 0%,     /* Capybara brown overlay */
        rgba(184, 212, 184, 0.1) 25%,   /* Capybara mint overlay */
        rgba(179, 217, 255, 0.1) 50%,   /* Cinnamoroll blue overlay */
        rgba(230, 243, 255, 0.1) 75%,   /* Cinnamoroll light overlay */
        rgba(203, 195, 227, 0.1) 100%   /* Kuromi purple overlay */
    );
    z-index: 0;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 2rem;
    border-radius: 25px 25px 30px 20px; /* Organic notebook-like curves */
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid rgba(139, 111, 71, 0.1);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.12);
    transform: rotate(-0.5deg); /* Subtle notebook tilt */
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, 
        rgba(139, 111, 71, 0.6) 0%, 
        rgba(139, 111, 71, 0.3) 50%, 
        transparent 100%);
    border-radius: 1px;
    z-index: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 8px;
    width: 30px;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 2px,
        rgba(139, 111, 71, 0.2) 2px,
        rgba(139, 111, 71, 0.2) 4px
    );
    border-radius: 2px;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-12px) rotate(0deg); /* Straightens on hover */
    box-shadow: 0 20px 45px rgba(139, 111, 71, 0.2);
    border-color: var(--capybara-coral);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

/* Capybara Product Visuals - Zen Notebook Style */
.product-image {
    margin-bottom: 1.5rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 18px 18px 22px 12px; /* Organic notebook curves */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 111, 71, 0.08);
    transform: rotate(0.2deg); /* Subtle notebook page tilt */
}

.capybara-product {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px 15px 18px 10px; /* Organic curves */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.1);
    transform: rotate(-0.1deg); /* Subtle notebook page feel */
}

/* Real Product Image - Zen Notebook Style */
.real-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px 15px 18px 10px; /* Organic notebook curves */
    box-shadow: 0 6px 15px rgba(139, 111, 71, 0.25);
    transition: all 0.4s ease;
    transform: rotate(-0.3deg); /* Gentle notebook tilt */
}

.real-product-image:hover {
    transform: scale(1.08) rotate(0deg); /* Straightens and grows on hover */
    box-shadow: 0 10px 25px rgba(139, 111, 71, 0.3);
}

/* Pen Visual */
.pen-visual {
    position: relative;
    width: 80px;
    height: 8px;
    display: flex;
    align-items: center;
}

.pen-body {
    width: 60px;
    height: 8px;
    border-radius: 4px;
    position: relative;
}

.pen-cap {
    width: 20px;
    height: 8px;
    border-radius: 4px;
}

.capybara-brown { background: var(--capybara-brown); }
.capybara-accent { background: var(--capybara-beige); }

.capybara-face {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--capybara-brown);
}

/* Cinnamoroll Pen Colors */
.cinnamoroll-blue { background: var(--cinnamoroll-blue); }
.cinnamoroll-white { background: var(--cinnamoroll-white); border: 1px solid var(--cinnamoroll-blue); }

.cinnamoroll-face {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--cinnamoroll-blue);
    animation: float 3s ease-in-out infinite;
}

/* Modal Product Visual Styles */
.modal-product-visual {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 15px;
    border: 3px solid var(--cinnamoroll-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(135, 206, 235, 0.3);
}

.modal-pen-set {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.modal-pen-visual {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-pen-body {
    width: 80px;
    height: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-pen-cap {
    width: 25px;
    height: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-cinnamoroll-face {
    font-size: 1.2rem;
    color: var(--cinnamoroll-blue);
    margin-top: 10px;
    animation: float 3s ease-in-out infinite;
}

/* Capybara Pens Gallery Styles */
.capybara-pens-gallery {
    width: 100%;
    max-width: 500px;
}

.main-pen-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.main-pen-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pen-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
}

.gallery-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--capybara-beige);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    border-color: var(--capybara-coral);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pen-set-info {
    background: var(--capybara-mint);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--capybara-green);
}

.pen-set-info p {
    margin-bottom: 1rem;
    color: var(--capybara-dark);
    font-size: 1.1rem;
}

.pen-set-info ul {
    list-style: none;
    padding: 0;
}

.pen-set-info li {
    padding: 0.5rem 0;
    color: var(--capybara-dark);
    border-bottom: 1px solid rgba(122, 155, 118, 0.3);
    position: relative;
    padding-left: 1.5rem;
}

.pen-set-info li:before {
    content: "🦫";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.pen-set-info li:last-child {
    border-bottom: none;
}

/* Notebook Visual */
.notebook-visual {
    position: relative;
    width: 60px;
    height: 80px;
}

.notebook-cover {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.capybara-green { background: var(--capybara-green); }

.capybara-illustration {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.zen-text {
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
}

.notebook-spine {
    position: absolute;
    right: -2px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--capybara-brown);
    border-radius: 0 2px 2px 0;
}

/* Art Kit Visual - Zen Notebook Style */
.art-kit-visual {
    width: 80px;
    height: 60px;
}

.art-box {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 15px 8px; /* Organic notebook curves */
    position: relative;
    display: flex;
    box-shadow: 0 3px 8px rgba(139, 111, 71, 0.2);
    transform: rotate(-0.5deg); /* Zen tilt */
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.capybara-logo {
    font-size: 0.6rem;
    font-weight: bold;
    color: white;
}

.art-supplies {
    display: flex;
    gap: 2px;
}

.pencil, .brush, .marker {
    width: 3px;
    height: 15px;
    border-radius: 1px;
}

.pencil { background: #FFD700; }
.brush { background: #FF6B6B; }
.marker { background: #4ECDC4; }

/* Office Kit Visual */
.office-kit-visual {
    width: 70px;
    height: 50px;
}

.desk-organizer {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.capybara-beige { background: var(--capybara-beige); }

.capybara-head {
    font-size: 1rem;
}

.office-items {
    display: flex;
    gap: 3px;
}

.paperclip {
    width: 4px;
    height: 8px;
    border: 1px solid #888;
    border-radius: 2px;
    background: none;
}

.sticky-note {
    width: 6px;
    height: 6px;
    background: #FFD700;
}

/* Study Kit Visual - Zen Notebook Style */
.study-kit-visual {
    width: 80px;
    height: 60px;
}

.study-box {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 15px 8px; /* Organic notebook curves */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 8px rgba(139, 111, 71, 0.2);
    transform: rotate(0.3deg); /* Zen tilt */
    padding: 0.3rem;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.capybara-mint { background: var(--capybara-mint); }

.graduating-capybara {
    font-size: 0.8rem;
}

.study-items {
    display: flex;
    gap: 2px;
}

.highlighter {
    width: 3px;
    height: 12px;
    border-radius: 1px;
}

.highlighter.yellow { background: #FFD700; }
.highlighter.pink { background: #FF69B4; }

.ruler {
    width: 15px;
    height: 2px;
    background: #888;
    border-radius: 1px;
}

/* Gift Bundle Visual - Zen Notebook Style */
.gift-bundle-visual {
    width: 70px;
    height: 70px;
}

.gift-box {
    width: 100%;
    height: 100%;
    border-radius: 14px 14px 18px 10px; /* Organic notebook curves */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.25);
    transform: rotate(-0.4deg); /* Zen tilt */
}

.capybara-coral { background: var(--capybara-coral); }

.gift-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 100%;
    background: #FFD700;
}

.gift-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 8px;
    background: #FFD700;
}

.capybara-family {
    font-size: 0.8rem;
    z-index: 1;
}

.bundle-text {
    font-size: 0.5rem;
    font-weight: bold;
    color: white;
    z-index: 1;
}

/* Planner Visual - Zen Notebook Style */
.planner-visual {
    width: 70px;
    height: 90px;
}

.planner-cover {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 15px 8px; /* Organic notebook curves */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(139, 111, 71, 0.2);
    transform: rotate(0.2deg); /* Zen tilt */
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.calendar-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.planner-text {
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.2rem;
}

.capybara-corner {
    position: absolute;
    bottom: 3px;
    right: 3px;
    font-size: 0.7rem;
}

/* Cinnamoroll Product Visuals */
.cinnamoroll-visual {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #E6F3FF 0%, #B3D9FF 50%, #80C5FF 100%);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.cinnamoroll-visual::before {
    content: '☁️';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 30px;
    animation: float 3s ease-in-out infinite;
}

.cinnamoroll-visual::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

.cinnamon-pen-visual {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #FFE5F1 0%, #FFB3E6 50%, #FF80DB 100%);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.cinnamon-pen-visual::before {
    content: '🖊️';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 25px;
    transform: rotate(-15deg);
}

.cinnamon-pen-visual::after {
    content: '💙';
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 18px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.combo-visual {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #D2B48C 0%, #E6F3FF 50%, #F5DEB3 100%);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.combo-visual::before {
    content: '🦫';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 28px;
}

.combo-visual::after {
    content: '☁️';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
}

/* Animations for Cinnamoroll elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

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

/* Category Pages Styling */
.category-hero {
    background: linear-gradient(135deg, var(--capybara-green) 0%, var(--capybara-mint) 100%);
    padding: 80px 0 60px;
    margin-top: 80px;
}

.category-header {
    text-align: center;
    color: white;
}

.category-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.products-category {
    padding: 60px 0;
}

.category-filters {
    margin-bottom: 40px;
    text-align: center;
}

.category-filters h3 {
    margin-bottom: 20px;
    color: var(--capybara-brown);
    font-size: 1.3rem;
}

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

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--capybara-coral);
    background: white;
    color: var(--capybara-coral);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--capybara-coral);
    color: white;
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.product-badge.limited {
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

.coming-soon {
    opacity: 0.7;
}

.coming-soon .add-to-cart-btn {
    background: #ccc;
    cursor: not-allowed;
}

.category-info {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-card h3 {
    color: var(--capybara-coral);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Navigation active state */
.nav-links a.active {
    color: var(--capybara-coral);
    font-weight: bold;
}

/* Study Kit Visual */
.study-kit-visual {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #F0F8FF 0%, #E0E6FF 50%, #D0D4FF 100%);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.product-icon {
    margin-bottom: 1.5rem;
}

.product-icon i {
    font-size: 4rem;
    color: #e74c3c;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: normal;
}

.sale-price {
    font-size: 1.3rem;
    color: #e74c3c;
    font-weight: bold;
}

.add-to-cart-btn {
    background: var(--capybara-coral);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: #D4956B;
    transform: translateY(-2px);
}

/* Coming Soon Styles */
.coming-soon-card {
    opacity: 0.6;
    position: relative;
    cursor: not-allowed !important;
    background: linear-gradient(145deg, #f5f5f5 0%, #e8e8e8 100%) !important;
    filter: grayscale(100%);
    pointer-events: none;
}

.coming-soon-card:hover {
    transform: none !important;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.12);
    border-color: rgba(139, 111, 71, 0.1);
}

.coming-soon-card .product-image {
    background: linear-gradient(135deg, #e0e0e0, #d0d0d0) !important;
    filter: grayscale(100%);
}

.coming-soon-card .real-product-image {
    filter: grayscale(100%) !important;
    opacity: 0.7;
}

.coming-soon-card h3 {
    color: #888 !important;
}

.coming-soon-card p {
    color: #999 !important;
}

.coming-soon-card .price {
    color: #aaa !important;
}

.coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--capybara-green) 0%, var(--capybara-mint) 100%);
    color: white;
    border-radius: 15px;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.2rem;
}

.contact-emoji {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    min-width: 24px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #bdc3c7;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.contact-form button {
    background: var(--capybara-coral);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background: #D4956B;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--capybara-coral);
    transform: translateY(-2px);
}

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter button {
    background: var(--capybara-coral);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #D4956B;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .search-container {
        margin: 0 1rem;
    }
    
    #searchInput {
        width: 180px;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    #searchButton {
        width: 35px;
        height: 35px;
    }
    
    .search-results {
        max-height: 300px;
    }
    
    .search-result-item {
        padding: 0.8rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .search-result-price {
        margin-left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-image i {
        font-size: 8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Full Screen Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: white;
    width: 95vw;
    height: 95vh;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: var(--capybara-brown);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    overflow-y: auto;
}

.modal-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--capybara-beige);
    border-radius: 15px;
    padding: 2rem;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-product-info h3 {
    font-size: 2.5rem;
    color: var(--capybara-brown);
    margin-bottom: 1rem;
}

.modal-product-info .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--capybara-coral);
    margin-bottom: 2rem;
}

.modal-product-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.modal-product-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.modal-product-info li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--capybara-beige);
    font-size: 1.1rem;
    color: var(--capybara-brown);
}

.modal-footer {
    background: var(--capybara-beige);
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.modal-add-to-cart {
    background: var(--capybara-coral);
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-add-to-cart:hover {
    background: var(--capybara-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 98vw;
        height: 98vh;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-product-info h3 {
        font-size: 2rem;
    }
    
    .modal-product-info .price {
        font-size: 2.5rem;
    }
}

/* Product Page Styles */
.product-page {
    padding-top: 2rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: var(--capybara-brown);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.capybara-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--capybara-beige);
    border-radius: 10px;
}

.image-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--capybara-coral);
    transform: scale(1.05);
}

.product-info h1 {
    font-size: 2.5rem;
    color: var(--capybara-brown);
    margin-bottom: 1rem;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--capybara-coral);
}

/* Checkout Page Styles */
.checkout-page {
    background: #f4f4f9;
    padding: 3rem 0;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--capybara-brown);
}

.checkout-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Amazon-Style Cart Modal - Full Screen */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.cart-modal-content {
    background: white;
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: none;
}

.cart-modal-header {
    background: linear-gradient(135deg, var(--capybara-brown) 0%, var(--capybara-coral) 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.cart-emoji {
    font-size: 2rem;
}

.close-cart-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

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

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.empty-cart h3 {
    color: var(--capybara-brown);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.empty-cart p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Cart Items */
.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--capybara-beige);
    align-items: center;
}

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

.cart-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--capybara-beige);
    border-radius: 15px;
}

.product-emoji {
    font-size: 2.5rem;
}

.cart-item-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--capybara-brown);
    font-size: 1.2rem;
}

.cart-item-price {
    color: #666;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.quantity-controls-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid var(--capybara-beige);
    border-radius: 8px;
    padding: 0.25rem;
}

.quantity-btn {
    background: var(--capybara-coral);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--capybara-brown);
    transform: scale(1.05);
}

.quantity-input {
    border: none;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: var(--capybara-brown);
}

.cart-item-total {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.item-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--capybara-coral);
    margin: 0;
}

.remove-item-btn {
    background: #ff6b6b;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

/* Cart Actions */
.cart-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--capybara-beige);
}

.clear-cart-btn, .continue-shopping-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.clear-cart-btn:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

.continue-shopping-btn {
    background: var(--capybara-green);
    color: white;
}

.continue-shopping-btn:hover {
    background: var(--capybara-brown);
    transform: translateY(-2px);
}

/* Cart Modal Footer */
.cart-modal-footer {
    background: var(--capybara-beige);
    padding: 1.5rem 2rem;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.back-to-cart-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-cart-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.place-order-btn {
    background: linear-gradient(135deg, var(--capybara-coral) 0%, var(--capybara-brown) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
