* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    border-radius: 0;
    border: none;
    object-fit: contain;
    display: block;
    background: transparent;
    padding: 0;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.logo-text p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link.active {
    color: #667eea;
    text-decoration: underline;
}

.cart-icon {
    position: relative;
    width: 42px;
    height: 42px;
    background: #e8d5ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.cart-icon:hover {
    background: #dcc5f5;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Page Management */
.page {
    display: none;
    min-height: calc(100vh - 200px);
    background: white;
}

.page.active {
    display: block;
}

#Checkout.page {
    min-height: calc(100vh - 100px);
    padding-bottom: 40px;
}

/* Hero Section with Gradient Background */
.hero-gradient {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #ff8a5b 100%);
    min-height: calc(100vh - 100px);
    padding: 60px 40px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Banner */
.hero-banner {
    background: #e8d5ff;
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid #d0b8e8;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
}

.banner-star {
    font-size: 20px;
    color: #ffd700;
}

.banner-text {
    color: #2d2d2d;
}

/* Main Heading */
.hero-heading {
    margin-bottom: 30px;
    line-height: 1.2;
}

.heading-white {
    color: white;
    font-size: 64px;
    font-weight: 800;
    display: inline-block;
    margin: 0 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.heading-yellow {
    color: #ffd700;
    font-size: 64px;
    font-weight: 800;
    display: inline-block;
    margin: 0 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: tilt 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes tilt {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Subheading */
.hero-subheading {
    font-size: 20px;
    color: white;
    margin-bottom: 50px;
    max-width: 800px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px 40px;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card.card-1 {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card.card-2 {
    background: rgba(255, 105, 180, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card.card-3 {
    background: rgba(135, 206, 250, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card.card-4 {
    background: rgba(144, 238, 144, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 8px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.feature-card.card-1 .feature-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.feature-card.card-2 .feature-icon {
    background: linear-gradient(135deg, #ff3333 0%, #ff69b4 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.feature-card.card-3 .feature-icon {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.feature-card.card-4 .feature-icon {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.feature-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/* CTA Button */
.hero-cta {
    margin-top: 20px;
}

.hero-button {
    background: white;
    border: none;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #667eea;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.hero-button:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Recommended For You Section */
.recommended-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    background: white;
}

.recommended-header {
    text-align: center;
    margin-bottom: 40px;
}

.recommended-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.star-icon {
    color: #667eea;
    font-size: 36px;
}

.recommended-header p {
    font-size: 16px;
    color: #666;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recommended-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.recommended-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.recommended-card .product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.recommended-card .product-info {
    padding: 20px;
}

.recommended-card .product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.recommended-card .product-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.recommended-card .product-price {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.recommended-card .product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Products Section */
.products-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    background: white;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.products-header p {
    font-size: 16px;
    color: #666;
}

.products-controls {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px 16px;
    gap: 10px;
    min-width: 250px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    flex: 1;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #e0e0e0;
}

.filter-btn.active {
    background: #667eea;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 10;
    color: white;
}

.card-tag.educational {
    background: #667eea;
}

.card-tag.entertainment {
    background: #764ba2;
}

.card-tag.utility {
    background: #56ab2f;
}

.card-tag.competition {
    background: #ffd700;
    color: #333;
}

.product-info {
    padding: 20px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-creator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 6px;
}

.creator-icon {
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 100px 40px;
    text-align: center;
    margin-bottom: 80px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    border: none;
    object-fit: contain;
    padding: 0;
    margin: 0 auto 30px;
    display: block;
}

.about-hero-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.mission-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.mission-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.mission-image-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    display: block;
}

.mission-stat {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #667eea;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.mission-stat span {
    font-size: 32px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.values-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    text-align: center;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.innovators-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.innovators-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 15px 0 50px;
}

.innovators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.innovator-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.innovator-icon {
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    color: white;
}

.innovator-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.grade-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #4facfe;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.innovator-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

.cta-section {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 60px 40px 40px;
    text-align: center;
    color: white;
}


.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: transparent;
    padding: 0;
    width: 80px;
    height: 80px;
    border-radius: 0;
    border: none;
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.footer-content p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.copyright {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.9;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
}

.cart-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-icon-header {
    font-size: 24px;
}

.cart-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cart-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-items-count {
    font-size: 14px;
    color: #666;
}

.close-cart {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    color: #333;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
    background-color: #f5f5f5;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #f5f5f5;
    border-color: #667eea;
}

.qty-number {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.cart-item-remove:hover {
    opacity: 1;
}

.cart-total {
    padding: 20px;
    border-top: 2px solid #e0e0e0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

/* Checkout Page */
#Checkout.page {
    min-height: 100vh;
    background: white;
    padding: 0;
    margin: 0;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    min-height: calc(100vh - 100px);
}

.checkout-left {
    background: white;
    padding: 0;
}

.back-to-shop {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
}

.back-to-shop:hover {
    text-decoration: underline;
}

.checkout-left h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
    background: white;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.order-method-radio {
    margin: 20px 0;
}

.radio-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.radio-buttons {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

.radio-option:hover {
    background: #f5f5f5;
}

.radio-input {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
}

.radio-input:checked + .radio-custom {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.radio-input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

#whatsappRadio:checked + .radio-custom {
    border-color: #25d366;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.radio-text {
    user-select: none;
}

.place-order-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 10px;
}

/* Hide WhatsApp radio option on desktop */
@media (min-width: 769px) {
    .radio-option#whatsappRadioOption {
        display: none !important;
    }
}

.place-order-btn:hover {
    transform: translateY(-2px);
}

.checkout-right {
    position: relative;
}

.order-summary-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.order-summary-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.order-item-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
    background-color: #f5f5f5;
    overflow: hidden;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.order-item-qty {
    font-size: 14px;
    color: #666;
}

.order-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

.order-summary-totals {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #333;
}

.summary-row.total-row {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.shipping-free {
    color: #56ab2f;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .innovators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .hero-gradient {
        padding: 40px 20px 60px;
        min-height: auto;
    }
    
    .heading-white,
    .heading-yellow {
        font-size: 42px;
    }
    
    .hero-subheading {
        font-size: 16px;
    }
    
    .feature-cards {
        gap: 15px;
    }
    
    .feature-card {
        min-width: 140px;
        padding: 20px 25px;
    }
    
    .feature-icon {
        font-size: 36px;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .recommended-section,
    .products-section,
    .mission-section,
    .values-section,
    .innovators-section {
        padding: 0 20px;
    }
    
    .recommended-grid {
        grid-template-columns: 1fr;
    }
    
    .products-header {
        flex-direction: column;
    }
    
    .products-controls {
        width: 100%;
        flex-direction: column;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .values-grid,
    .innovators-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content h2 {
        font-size: 32px;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .checkout-right {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

