/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #8fbfa8;
    --primary-light: #c8e3d6;
    --primary-dark: #5f8f7c;
    --primary-vibrant: #6fae98;

    /* Secondary Colors */
    --secondary-color: #e9b7a5;
    --secondary-light: #f4d4c8;
    --secondary-dark: #c78370;

    /* Accent Colors */
    --accent-color: #d9a6b8;
    --accent-light: #efd0dc;
    --accent-dark: #b77f94;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8fbfa8, #e9b7a5);
    --gradient-secondary: linear-gradient(135deg, #d9a6b8, #c8e3d6);
    --gradient-accent: linear-gradient(90deg, #8fbfa8, #e9b7a5, #d9a6b8);
    --gradient-vibrant: linear-gradient(45deg, #6fae98, #d9a6b8);
    --gradient-soft: linear-gradient(180deg, #fffdf8, #edf6f0);

    /* Status Colors */
    --success-color: #6fae98;
    --success-light: #b8dbc9;
    --success-dark: #4f7f6d;
    --warning-color: #d8a24d;
    --warning-light: #efd4a1;
    --warning-dark: #aa7830;
    --error-color: #c9798e;
    --error-light: #f0c4cf;
    --danger-color: #c9798e;

    /* Text Colors */
    --text-primary: #2f3230;
    --text-secondary: #5f6962;
    --text-tertiary: #7d867f;
    --text-muted: #a5ada7;
    --text-inverse: #ffffff;

    /* Background Colors */
    --bg-primary: #fffdf8;
    --bg-secondary: #f7f1ea;
    --bg-tertiary: #edf6f0;
    --bg-inverse: #2f3230;
    --bg-overlay: rgba(255, 253, 248, 0.9);
    --bg-overlay-light: rgba(255, 255, 255, 0.2);

    /* Border Colors */
    --border-color: #e7ded4;
    --border-light: #f4ece3;
    --border-dark: #d2c2b4;

    /* Overlay Colors */
    --overlay-light: rgba(255, 255, 255, 0.1);
    --overlay-medium: rgba(255, 255, 255, 0.2);
    --overlay-dark: rgba(0, 0, 0, 0.1);
    --overlay-darker: rgba(0, 0, 0, 0.2);

    /* Shadow Colors */
    --shadow-sm: 0 1px 3px rgba(95, 143, 124, 0.12);
    --shadow-md: 0 4px 6px rgba(95, 143, 124, 0.14);
    --shadow-lg: 0 10px 25px rgba(95, 143, 124, 0.16);
    --shadow-xl: 0 20px 40px rgba(95, 143, 124, 0.18);
    --shadow-colored: 0 10px 30px rgba(143, 191, 168, 0.35);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
}

.cta .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta .btn-outline {
    background: transparent;
    border-color: white;
    color: white;
    box-shadow: none;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
}

/* Header Styles */

.header-split {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-split .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin: 0 3rem;
    transition: transform 0.3s ease;
}

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

.logo-center:hover .logo-img-split {
    transform: scale(1.05);
    font-weight: 900;
    color: white;
    z-index: 1;
}

.logo-name {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

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

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

.cart-icon-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cart-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Styles */

.hero-3d-cards {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    position: relative;
    overflow: hidden;
}

.hero-3d-cards::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-color) 0%, transparent 50%);
    opacity: 0.05;
}

.hero-3d-cards .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title-block {
    flex-shrink: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
}

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

.cards-3d-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    animation: slideInRight 1s ease-out;
}

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

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.card-3d-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.card-3d-front {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--primary-color);
}

.card-3d:nth-child(2) .card-icon {
    animation-delay: 0.5s;
}

.card-3d:nth-child(3) .card-icon {
    animation-delay: 1s;
}

.card-3d:nth-child(4) .card-icon {
    animation-delay: 1.5s;
}

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

.card-3d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-3d p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-3d-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color), transparent);
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.3s ease;
    z-index: 0;
}

.card-3d:hover .card-3d-glow {
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .hero-3d-cards .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cards-3d-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-3d-cards {
        padding: 3rem 0;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cards-3d-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Footer Styles */

.footer-grid-reveal {
    background: var(--bg-secondary);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-grid-reveal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan 3s linear infinite;
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.grid-item {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-item.large {
    grid-column: span 2;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.grid-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, var(--primary-color));
    opacity: 0;
    border-radius: 16px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.grid-item:hover::before {
    opacity: 0.05;
}

.grid-item:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.logo-dot {
    position: absolute;
    top: 0;
    right: -15px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: blink 2s infinite;
}

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

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.grid-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.grid-item h4::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.grid-links {
    list-style: none;
}

.grid-links li {
    margin-bottom: 0.5rem;
}

.grid-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.grid-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.grid-links a:hover::before {
    left: 0;
    opacity: 1;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.footer-bottom-grid {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: #d0d7d2;
    font-size: 0.875rem;
}

/* Card Styles */

/* Glow Lift Card Styles */
.card-glow-lift {
    position: relative;
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-glow-wrapper {
    position: relative;
    height: 100%;
}

.card-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
    z-index: -1;
}

.card-glow-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.card-glow-lift:hover .card-glow-effect {
    opacity: 0.6;
}

.card-glow-lift .card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.card-glow-lift .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-glow-lift:hover .card-image {
    transform: scale(1.1);
}

.card-glow-lift .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-glow-lift:hover .card-overlay {
    opacity: 1;
}

.card-glow-lift .quick-view-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.card-glow-lift:hover .quick-view-btn {
    transform: translateY(0);
}

.card-glow-lift .quick-view-btn:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--primary-color);
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.card-glow-lift .product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.card-glow-lift .product-card-stars { display: flex; gap: 1px; color: var(--accent-color, #fbbf24); }
.card-glow-lift .product-card-stars svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.card-glow-lift .product-card-stars .empty { color: var(--border-color, #d1d5db); }
.card-glow-lift .product-card-stars .half-filled { margin-left: -14px; clip-path: inset(0 50% 0 0); }
.card-glow-lift .product-card-rating span { font-size: 12px; color: var(--text-secondary); }

.card-price {
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-glow-lift .card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.card-glow-lift .add-to-cart {
    flex: 1;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-glow-lift .add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-glow-lift .add-to-cart svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.card-glow-lift .add-to-wishlist {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.card-glow-lift .add-to-wishlist svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.card-glow-lift .add-to-wishlist:hover {
    border-color: var(--accent-dark);
    background: var(--accent-light);
    transform: scale(1.1);
}

/* Button Styles */

/* Base button styles */
.btn {
    position: relative;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 12px;
    transform-style: preserve-3d;
    transition: all 0.15s ease;
}

/* 3D Press Effect */
.btn-3d-press {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow:
        0 6px 0 var(--primary-dark),
        0 8px 10px rgba(0, 0, 0, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.btn-3d-press:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 0 var(--primary-dark),
        0 10px 15px rgba(0, 0, 0, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:active, .btn-3d-press:active {
    transform: translateY(0);
    box-shadow:
        0 2px 0 var(--primary-dark),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    box-shadow:
        0 6px 0 var(--secondary-dark),
        0 8px 10px rgba(0, 0, 0, 0.2),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.btn-secondary:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 0 var(--secondary-dark),
        0 10px 15px rgba(0, 0, 0, 0.25),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow:
        0 2px 0 var(--secondary-dark),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cart and Product Buttons */
.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    box-shadow:
        0 4px 0 var(--primary-dark),
        0 6px 8px rgba(95, 143, 124, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    transition: all 0.1s ease;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 5px 0 var(--primary-dark),
        0 7px 10px rgba(95, 143, 124, 0.26),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.add-to-cart:active, .product-btn:active, .cart-button:active {
    transform: translateY(0);
    box-shadow:
        0 1px 0 var(--primary-dark),
        0 1px 3px rgba(95, 143, 124, 0.2),
        inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Outline Button */
.btn-outline {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow:
        0 4px 0 var(--border-color),
        0 6px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-outline:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow:
        0 5px 0 var(--primary-color),
        0 7px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow:
        0 1px 0 var(--primary-color),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Button Group 3D */
.btn-group {
    display: inline-flex;
    gap: 1rem;
    perspective: 500px;
}

.btn-group .btn {
    transform: rotateX(-10deg) translateY(-4px);
}

.btn-group .btn:hover {
    transform: rotateX(0deg) translateY(-6px);
}

/* Item Page Styles */

.item-split {
    padding: 2rem 0;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 3rem;
    justify-content: center;
}

.split-left {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2rem;
}

.sticky-gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-image-container {
    position: relative;
}

.main-image-split {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
}

.split-right {
    padding: 2rem 0;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.brand {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.sku {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.btn-favorite {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.product-title-split {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.price-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.price-split {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-compare {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.rating-split {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--warning-color);
    font-size: 1.25rem;
}

.product-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.product-description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-description p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.purchase-section {
    margin-bottom: 2rem;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.qty-minus,
.qty-plus {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.25rem;
}

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.btn-add-split {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.delivery-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.delivery-item {
    display: flex;
    gap: 1rem;
}

.delivery-item .icon {
    font-size: 1.5rem;
}

.delivery-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.delivery-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}
