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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFFFFF;
    color: #1e293b;
    overflow-x: hidden;
    position: relative;
}

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

/* Background Pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(173, 216, 230, 0.1) 2px, rgba(173, 216, 230, 0.1) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(173, 216, 230, 0.1) 2px, rgba(173, 216, 230, 0.1) 4px);
    z-index: 0;
    pointer-events: none;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 20px 0;
}

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

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

.logo-icon {
    font-size: 32px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link.active {
    color: #1e293b;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #00CED1;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 5;
    padding: 60px 0 40px;
    min-height: 90vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

/* Hero Left */
.hero-left {
    padding-top: 40px;
    position: relative;
}

.hero-headline {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 40px;
    position: relative;
}

.headline-with-avatar {
    position: relative;
    display: inline-block;
}

.avatar-circle {
    position: absolute;
    left: -30px;
    top: -10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.headline-text {
    margin-left: 35px;
}

.cta-button {
    display: flex;
    align-items: center;
    background: #FFD700;
    border-radius: 50px;
    padding: 18px 30px;
    width: fit-content;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-left {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-right: 20px;
}

.cta-right {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    border-left: 2px solid rgba(30, 41, 59, 0.2);
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.cart-icon {
    font-size: 20px;
}

.arrow-decoration {
    position: absolute;
    left: 380px;
    top: 180px;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-content {
    flex: 1;
}

.trust-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.trust-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 2px;
}

.trust-text {
    font-size: 12px;
    color: #94a3b8;
}

.star-decoration {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 24px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
}

/* Hero Right */
.hero-right {
    position: relative;
    height: 600px;
}

.decorative-slash {
    position: absolute;
    top: -20px;
    right: 100px;
    font-size: 80px;
    font-weight: 300;
    color: #1e293b;
    opacity: 0.3;
    transform: rotate(-15deg);
    z-index: 1;
}

.product-display {
    position: relative;
    width: 100%;
    height: 100%;
}

.yellow-background-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url("https://via.placeholder.com/500x500/FFD700/FFFFFF?text=Shape");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50% 40% 50% 40%;
    border: 8px solid #FFFFFF;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    z-index: 1;
}

.color-swatches {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.swatch-blue {
    background: #4169E1;
}

.swatch-teal {
    background: #00CED1;
}

.swatch-orange {
    background: #FF8C00;
}

.swatch-yellow {
    background: #FFD700;
}

.backpack-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 400px;
    height: 500px;
}

.backpack {
    position: relative;
    width: 100%;
    height: 100%;
}

.backpack-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: #00CED1;
    border-radius: 15px 15px 0 0;
    z-index: 3;
}

.backpack-body {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: calc(100% - 25px);
    background: #000000;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
}

.backpack-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, #00CED1 20px, #00CED1 22px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, #FFD700 20px, #FFD700 22px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, #FFFFFF 15px, #FFFFFF 16px);
    opacity: 0.6;
    z-index: 1;
}

.backpack-pocket {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 180px;
    background: #000000;
    border: 3px solid #00CED1;
    border-radius: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pocket-label {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 8px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
}

.pocket-text {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Brush Script MT', cursive;
    text-align: center;
    line-height: 1;
    margin-top: 20px;
}

.feature-badges {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 3px solid #FFD700;
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.badge-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.badge-text {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

.badge-subtext {
    font-size: 9px;
    color: #64748b;
    margin-top: 2px;
}

.view-360 {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

/* Social Proof */
.social-proof {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
}

.social-image {
    position: relative;
    width: 200px;
    height: 150px;
    margin-bottom: 15px;
}

.social-frame {
    width: 100%;
    height: 100%;
    background: #FF8C00;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.social-frame::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-radius: 15px;
    opacity: 0.8;
}

.social-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pics {
    display: flex;
    gap: -10px;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
    border: 2px solid #FFFFFF;
    margin-left: -8px;
}

.profile-pic:first-child {
    margin-left: 0;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-icon {
    font-size: 18px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
}

.rating-score {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
}

/* Trusted By Section */
.trusted-by-section {
    position: relative;
    z-index: 5;
    padding: 50px 0;
    background-color: #fafafa;
    margin-top: 0;
}

.trusted-by-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.brand-logo:hover {
    opacity: 1;
}

.brand-logo svg {
    height: 40px;
    width: auto;
}

.adidas-logo svg {
    width: 120px;
}

.converse-logo svg {
    width: 140px;
}

.puma-logo svg {
    width: 100px;
}

/* Collections Section */
.collections-section {
    position: relative;
    z-index: 5;
    padding: 80px 0;
    background-color: #FFFFFF;
}

.collections-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-text {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
}

.collections-headline {
    font-size: 56px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.highlight-yellow {
    background: linear-gradient(180deg, transparent 60%, #FFD700 60%);
    padding: 0 5px;
}

/* Collection Blocks */
.collection-block {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0;
}

.blue-section {
    background-color: #4A63F7;
    padding: 80px 0;
}

.orange-section {
    background-color: #FF6B35;
    padding: 80px 0;
}

.green-section {
    background-color: #10B981;
    padding: 80px 0;
}

.collection-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.collection-content.reverse {
    direction: rtl;
}

.collection-content.reverse > * {
    direction: ltr;
}

/* Section Doodles */
.section-doodles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.school-doodles {
    background-image: 
        url("https://via.placeholder.com/100x100/ADD8E6/FFFFFF?text=Pattern"),
        url("https://via.placeholder.com/80x80/ADD8E6/FFFFFF?text=Pattern");
    background-repeat: repeat;
    background-size: 150px 150px, 100px 100px;
}

.tech-doodles {
    background-image: 
        url("https://via.placeholder.com/100x100/FFDAB9/FFFFFF?text=Pattern"),
        url("https://via.placeholder.com/80x80/FFDAB9/FFFFFF?text=Pattern");
    background-repeat: repeat;
    background-size: 150px 150px, 100px 100px;
}

.travel-doodles {
    background-image: 
        url("https://via.placeholder.com/100x100/A7F3D0/FFFFFF?text=Pattern"),
        url("https://via.placeholder.com/80x80/A7F3D0/FFFFFF?text=Pattern");
    background-repeat: repeat;
    background-size: 150px 150px, 100px 100px;
}

/* Collection Left - Backpacks Display */
.backpacks-display {
    position: relative;
    height: 500px;
}

.background-text {
    position: absolute;
    font-size: 120px;
    font-weight: 700;
    font-family: 'Brush Script MT', cursive;
    z-index: 1;
    opacity: 0.3;
}

.yellow-text {
    color: #FFD700;
    top: 50%;
    left: 20%;
    transform: translateY(-50%) rotate(-5deg);
}

.white-text {
    color: #FFFFFF;
    top: 50%;
    right: 20%;
    transform: translateY(-50%) rotate(5deg);
}

.backpack-pair {
    position: relative;
    z-index: 2;
    display: flex;
    gap: -20px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.child-backpack,
.laptop-backpack,
.travel-backpack {
    position: relative;
    width: 250px;
    height: 350px;
}

.backpack-1 {
    z-index: 3;
    transform: translateX(20px);
}

.backpack-2 {
    z-index: 2;
    transform: translateX(-20px);
}

.backpack-top-teal {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: #00CED1;
    border-radius: 15px 15px 0 0;
    z-index: 2;
}

.backpack-top-teal::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #00CED1;
    border-radius: 8px 8px 0 0;
}

.child-backpack::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 8px;
    height: 120px;
    background: #00CED1;
    border-radius: 4px;
    z-index: 1;
}

.child-backpack::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 20px;
    width: 8px;
    height: 120px;
    background: #00CED1;
    border-radius: 4px;
    z-index: 1;
}

.backpack-top-grey {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: #4A5568;
    border-radius: 15px 15px 0 0;
    z-index: 2;
}

.backpack-top-grey::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #4A5568;
    border-radius: 8px 8px 0 0;
}

.laptop-backpack::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 8px;
    height: 120px;
    background: #4A5568;
    border-radius: 4px;
    z-index: 1;
}

.laptop-backpack::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 20px;
    width: 8px;
    height: 120px;
    background: #4A5568;
    border-radius: 4px;
    z-index: 1;
}

.backpack-top-green {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: #059669;
    border-radius: 15px 15px 0 0;
    z-index: 2;
}

.backpack-top-green::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #059669;
    border-radius: 8px 8px 0 0;
}

.travel-backpack::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 8px;
    height: 120px;
    background: #059669;
    border-radius: 4px;
    z-index: 1;
}

.travel-backpack::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 20px;
    width: 8px;
    height: 120px;
    background: #059669;
    border-radius: 4px;
    z-index: 1;
}

.backpack-body-travel {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: calc(100% - 25px);
    background: #1F2937;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.backpack-pattern-travel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, #059669 20px, #059669 22px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, #FFD700 20px, #FFD700 22px);
    opacity: 0.4;
}

.backpack-body-black {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: calc(100% - 25px);
    background: #000000;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.backpack-body-camo {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: calc(100% - 25px);
    background: 
        repeating-linear-gradient(45deg, #808080 0px, #808080 10px, #A0A0A0 10px, #A0A0A0 20px),
        repeating-linear-gradient(-45deg, #808080 0px, #808080 10px, #A0A0A0 10px, #A0A0A0 20px);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.backpack-pattern-zigzag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 15px, #00CED1 15px, #00CED1 17px),
        repeating-linear-gradient(-45deg, transparent, transparent 15px, #FFD700 15px, #FFD700 17px),
        repeating-linear-gradient(90deg, transparent, transparent 12px, #FFFFFF 12px, #FFFFFF 13px);
    opacity: 0.7;
}

.backpack-pocket-front {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 140px;
    background: #000000;
    border: 2px solid #00CED1;
    border-radius: 10px;
    padding: 10px;
    z-index: 2;
}

.pocket-label-small {
    font-size: 7px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.pocket-label-small-2 {
    font-size: 6px;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Testimonial Bubble */
.testimonial-bubble {
    position: absolute;
    bottom: 20px;
    left: 10%;
    background: #3B52D5;
    border: 2px solid #FFFFFF;
    border-radius: 20px 20px 20px 5px;
    padding: 20px;
    z-index: 4;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stars-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.star {
    font-size: 18px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
}

.testimonial-text {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Collection Right - Content */
.collection-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.2;
}

.checkmark-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #4A63F7;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 30px;
    margin-left: 10px;
    vertical-align: middle;
}

.orange-section .checkmark-icon {
    color: #FF6B35;
}

.green-section .checkmark-icon {
    color: #10B981;
}

.collection-cta {
    display: inline-block;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 40px;
    transition: opacity 0.3s;
}

.collection-cta:hover {
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ADD8E6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.orange-section .feature-icon-circle {
    background: #FFDAB9;
}

.green-section .feature-icon-circle {
    background: #A7F3D0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* CTA Button Section */
.cta-section {
    position: relative;
    z-index: 5;
    padding: 80px 0;
    background-color: #FFFFFF;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    padding: 20px 40px;
    background-color: #FFD700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    box-shadow: 
        8px 8px 0 0 #330033,
        0 0 0 2px #330033;
    transition: transform 0.2s, box-shadow 0.2s;
}

.add-to-cart-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        10px 10px 0 0 #330033,
        0 0 0 2px #330033;
}

.add-to-cart-btn:active {
    transform: translate(0, 0);
    box-shadow: 
        6px 6px 0 0 #330033,
        0 0 0 2px #330033;
}

.btn-text-left {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    text-align: left;
}

.btn-text-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.btn-price {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.btn-cart-icon {
    font-size: 24px;
    filter: brightness(0);
}

.delivery-message {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

/* Special Section */
.special-section {
    position: relative;
    z-index: 5;
    padding: 100px 0;
    background-color: #FFFFFF;
}

.special-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.decorative-squiggle {
    position: absolute;
    top: -20px;
    left: 50px;
    width: 80px;
    height: 40px;
    background-image: url("https://via.placeholder.com/80x40/000000/FFFFFF?text=Deco");
    background-repeat: no-repeat;
    opacity: 0.8;
}

.decorative-arrow {
    position: absolute;
    top: -10px;
    right: 50px;
    width: 60px;
    height: 60px;
    background-image: url("https://via.placeholder.com/60x60/FF6B35/FFFFFF?text=Arrow");
    background-repeat: no-repeat;
    opacity: 0.8;
}

.special-intro {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
}

.special-title {
    font-size: 56px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight-special {
    background: linear-gradient(180deg, transparent 70%, #FFD700 70%);
    padding: 0 5px;
}

.special-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-large {
    grid-row: span 2;
    position: relative;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    min-height: 600px;
}

.feature-card {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    min-height: 280px;
}

.firm-base-card {
    background-color: #F8E8E4;
}

.front-protection-card {
    background-color: #4A63F7;
}

.multiple-pockets-card {
    background-color: #A7F3D0;
}

/* Card Doodles */
.card-doodle {
    position: absolute;
    opacity: 0.3;
    z-index: 1;
}

.cloud-doodle-1 {
    top: 20px;
    left: 20px;
    width: 60px;
    height: 40px;
    background-image: url("https://via.placeholder.com/60x40/000000/FFFFFF?text=Cloud");
    background-repeat: no-repeat;
}

.cloud-doodle-2 {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 40px;
    background-image: url("https://via.placeholder.com/60x40/000000/FFFFFF?text=Cloud");
    background-repeat: no-repeat;
}

.wavy-doodle-1 {
    bottom: 40px;
    left: 30px;
    width: 80px;
    height: 30px;
    background-image: url("https://via.placeholder.com/80x30/A0522D/FFFFFF?text=Wave");
    background-repeat: no-repeat;
}

.yellow-wavy-1 {
    top: 30px;
    left: 30px;
    width: 60px;
    height: 25px;
    background-image: url("https://via.placeholder.com/60x25/FFD700/FFFFFF?text=Wave");
    background-repeat: no-repeat;
}

.yellow-star {
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    background-image: url("https://via.placeholder.com/30x30/FFD700/FFFFFF?text=★");
    background-repeat: no-repeat;
}

.white-swirl-1 {
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background-image: url("https://via.placeholder.com/50x50/FFFFFF/000000?text=Swirl");
    background-repeat: no-repeat;
}

.white-swirl-2 {
    top: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-image: url("https://via.placeholder.com/45x45/FFFFFF/000000?text=Swirl");
    background-repeat: no-repeat;
}

/* Backpack Images */
.backpack-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    z-index: 2;
}

.feature-card .backpack-image-container {
    height: 180px;
}

/* Firm Base Card - Backpack Bottom View */
.backpack-bottom-view {
    position: relative;
    width: 100%;
    height: 100%;
    background: #333333;
    border-radius: 15px;
    overflow: hidden;
    transform: perspective(800px) rotateX(15deg) rotateY(-10deg);
    transform-style: preserve-3d;
}

.backpack-base-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: 
        repeating-linear-gradient(45deg, #4A5568 0px, #4A5568 8px, #2D3748 8px, #2D3748 16px),
        repeating-linear-gradient(-45deg, #4A5568 0px, #4A5568 8px, #2D3748 8px, #2D3748 16px);
    border-radius: 0 0 15px 15px;
}

.backpack-neon-trim-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #ADFF2F;
    border-radius: 0 0 15px 15px;
}

.backpack-neon-trim-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #ADFF2F;
    border-radius: 15px 15px 0 0;
}

.backpack-neon-trim-side {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #ADFF2F;
    border-radius: 15px 0 0 15px;
}

.backpack-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 10px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Front Protection Card - Backpack Top View */
.backpack-top-view {
    position: relative;
    width: 100%;
    height: 100%;
    background: #333333;
    border-radius: 15px;
    overflow: hidden;
    transform: perspective(800px) rotateX(-10deg) rotateY(5deg);
    transform-style: preserve-3d;
}

.backpack-pattern-subtle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent 0px, transparent 20px, rgba(74, 85, 104, 0.3) 20px, rgba(74, 85, 104, 0.3) 22px);
    opacity: 0.5;
}

.zipper-pocket {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zipper-pull {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.zipper-pull::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
}

.zipper-1 {
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translateY(-50%);
}

.zipper-2 {
    position: absolute;
    right: 30%;
    top: 50%;
    transform: translateY(-50%);
}

/* Multiple Pockets Card - Backpack Side View */
.backpack-side-view {
    position: relative;
    width: 100%;
    height: 100%;
    background: #333333;
    border-radius: 15px;
    overflow: hidden;
    transform: perspective(800px) rotateY(-15deg);
    transform-style: preserve-3d;
}

.mesh-pocket {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 120px;
    background: 
        repeating-linear-gradient(0deg, transparent 0px, transparent 4px, rgba(255, 255, 255, 0.1) 4px, rgba(255, 255, 255, 0.1) 8px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 4px, rgba(255, 255, 255, 0.1) 4px, rgba(255, 255, 255, 0.1) 8px);
    border: 2px solid rgba(173, 255, 47, 0.5);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Card Titles */
.card-title {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    z-index: 3;
    margin: 0;
}

.white-text {
    color: #FFFFFF;
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
    z-index: 5;
    padding: 100px 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

/* Left Side: Visuals */
.testimonial-visual {
    position: relative;
    height: 600px;
}

.yellow-background-shape-testimonial {
    position: absolute;
    top: 0;
    left: -50px;
    width: 500px;
    height: 500px;
    background-image: url("https://via.placeholder.com/500x500/FFD700/FFFFFF?text=Shape");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    z-index: 1;
}

.cloud-cutout {
    position: absolute;
    background: #FFFFFF;
    border-radius: 50%;
}

.cloud-top-1 {
    top: -30px;
    left: 50px;
    width: 80px;
    height: 80px;
}

.cloud-top-2 {
    top: -20px;
    left: 200px;
    width: 100px;
    height: 100px;
}

.cloud-top-3 {
    top: -40px;
    right: 100px;
    width: 90px;
    height: 90px;
}

.cloud-bottom-1 {
    bottom: -30px;
    left: 80px;
    width: 70px;
    height: 70px;
}

.cloud-bottom-2 {
    bottom: -25px;
    left: 250px;
    width: 85px;
    height: 85px;
}

.cloud-bottom-3 {
    bottom: -35px;
    right: 120px;
    width: 75px;
    height: 75px;
}

.person-backpack {
    position: absolute;
    top: 100px;
    left: 50px;
    z-index: 3;
    width: 200px;
    height: 400px;
}

.person-silhouette {
    position: relative;
    width: 100%;
    height: 100%;
}

.person-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #1e293b;
    border-radius: 50%;
}

.person-body {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 120px;
    background: #1e293b;
    border-radius: 40px 40px 20px 20px;
}

.person-arms {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: #1e293b;
    border-radius: 10px;
}

.person-legs {
    position: absolute;
    top: 170px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    background: #1e293b;
    border-radius: 30px 30px 20px 20px;
}

.watch {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 15px;
    height: 15px;
    background: #000000;
    border-radius: 50%;
    z-index: 2;
}

.backpack-grey {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 140px;
    z-index: 1;
}

.backpack-straps-teal {
    position: absolute;
    top: -20px;
    left: 10px;
    width: 8px;
    height: 60px;
    background: #00CED1;
    border-radius: 4px;
}

.backpack-straps-teal::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 10px;
    width: 8px;
    height: 60px;
    background: #00CED1;
    border-radius: 4px;
}

.backpack-straps-teal::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #00CED1;
    border-radius: 4px;
}

.backpack-body-grey {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #808080;
    border-radius: 10px 10px 5px 5px;
}

.backpack-pattern-geometric {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    height: 40px;
    background: 
        repeating-linear-gradient(45deg, #666666 0px, #666666 5px, #4A4A4A 5px, #4A4A4A 10px);
    border-radius: 5px;
}

.backpack-mesh-pockets {
    position: absolute;
    top: 20px;
    left: -15px;
    width: 20px;
    height: 60px;
    background: 
        repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0, 0, 0, 0.1) 3px, rgba(0, 0, 0, 0.1) 6px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 3px, rgba(0, 0, 0, 0.1) 3px, rgba(0, 0, 0, 0.1) 6px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.backpack-camo {
    position: absolute;
    top: 200px;
    left: 150px;
    width: 180px;
    height: 220px;
    z-index: 2;
    transform: rotate(-5deg);
}

.camo-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, #4A5D23 0px, #4A5D23 15px, #6B7C3A 15px, #6B7C3A 30px),
        repeating-linear-gradient(-45deg, #2D3A14 0px, #2D3A14 20px, #4A5D23 20px, #4A5D23 40px);
    border-radius: 15px;
}

.backpack-panel-black {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 100px;
    background: #000000;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.yellow-label {
    font-size: 8px;
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 1px;
}

.white-text-large {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 700;
    font-family: 'Brush Script MT', cursive;
}

.zippers-yellow {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

.zippers-yellow::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

.mesh-pockets-side {
    position: absolute;
    top: 40px;
    right: -12px;
    width: 15px;
    height: 80px;
    background: 
        repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* Right Side: Testimonial Text */
.testimonial-text-content {
    position: relative;
    z-index: 2;
}

.testimonial-intro {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 15px;
}

.testimonial-headline {
    font-size: 56px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-icon-large {
    font-size: 120px;
    color: #FF6B35;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

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

.stars-five {
    display: flex;
    gap: 5px;
}

.star-yellow {
    font-size: 24px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #00B67A;
    padding: 8px 15px;
    border-radius: 20px;
}

.trustpilot-star {
    font-size: 18px;
    filter: brightness(0) invert(1);
}

.trustpilot-text {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
}

.review-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

.signature {
    font-size: 24px;
    color: #1e293b;
    font-family: 'Brush Script MT', cursive;
    font-weight: 600;
    margin-bottom: 20px;
}

.certified-badge {
    display: inline-block;
    background: #10B981;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonial-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Products Carousel Section */
.products-carousel-section {
    position: relative;
    z-index: 5;
    padding: 100px 0;
    background-color: #FFFFFF;
}

.carousel-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.decorative-orange-lines {
    position: absolute;
    top: 20px;
    left: 50px;
    width: 60px;
    height: 40px;
    background-image: url("https://via.placeholder.com/60x40/FF6B35/FFFFFF?text=Deco");
    background-repeat: no-repeat;
    opacity: 0.6;
}

.decorative-black-dashes {
    position: absolute;
    top: 40px;
    right: 100px;
    width: 30px;
    height: 30px;
    background-image: url("https://via.placeholder.com/30x30/000000/FFFFFF?text=X");
    background-repeat: no-repeat;
    opacity: 0.4;
}

.carousel-subheadline {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 15px;
}

.carousel-headline {
    font-size: 56px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight-yellow-match {
    background: #FFD700;
    padding: 0 8px;
    display: inline-block;
}

.carousel-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #E2E8F0;
    background: #FFFFFF;
    border-radius: 50%;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-arrow:hover {
    border-color: #FFD700;
    color: #FFD700;
    background: #FFFBF0;
}

/* Products Carousel */
.products-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.product-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 280px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
}

.bg-pink {
    background-color: #FFE5E5;
}

.bg-yellow {
    background-color: #FFF9E6;
}

.bg-light-green {
    background-color: #E8F5E9;
}

.bg-gray-green {
    background-color: #F0F4F3;
}

.product-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-discount {
    background: #4169E1;
    color: #FFFFFF;
}

.badge-dot {
    width: 5px;
    height: 5px;
    background: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
}

.badge-hot {
    background: #FF0000;
    color: #FFFFFF;
    padding: 6px 12px;
}

/* Backpack Products */
.backpack-product {
    position: relative;
    width: 180px;
    height: 220px;
    z-index: 1;
}

/* Yellow & Black Backpack */
.backpack-top-yellow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: #FFD700;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backpack-number {
    font-size: 72px;
    font-weight: 900;
    color: #000000;
    -webkit-text-stroke: 2px #FFFFFF;
    text-stroke: 2px #FFFFFF;
    line-height: 1;
}

.backpack-bottom-black {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #000000;
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    gap: 4px;
}

.backpack-label {
    font-size: 8px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.backpack-handle-yellow {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #FFD700;
    border-radius: 8px 8px 0 0;
}

/* Teal Pattern Backpack */
.backpack-top-teal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: #00CED1;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.zigzag-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, #FFD700 10px, #FFD700 12px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, #FFFFFF 10px, #FFFFFF 12px);
}

.backpack-logo-small {
    width: 18px;
    height: 18px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
}

.backpack-brand {
    font-size: 18px;
    color: #FFD700;
    font-family: 'Brush Script MT', cursive;
    text-align: center;
    margin-top: 5px;
}

.backpack-handle-teal {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #00CED1;
    border-radius: 8px 8px 0 0;
}

/* Camo & Olive Backpack */
.backpack-top-camo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.camo-pattern-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, #4A5D23 0px, #4A5D23 12px, #6B7C3A 12px, #6B7C3A 24px),
        repeating-linear-gradient(-45deg, #2D3A14 0px, #2D3A14 15px, #4A5D23 15px, #4A5D23 30px);
}

.yellow-patch {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 7px;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.backpack-bottom-olive {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #556B2F;
    border-radius: 0 0 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.backpack-brand-white {
    font-size: 16px;
    color: #FFFFFF;
    font-family: 'Brush Script MT', cursive;
    text-align: center;
    margin-top: 5px;
}

.backpack-handle-black {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #000000;
    border-radius: 8px 8px 0 0;
}

.zipper-yellow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

/* Gray Camo Backpack */
.backpack-top-gray-camo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.camo-pattern-gray {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, #808080 0px, #808080 10px, #4A4A4A 10px, #4A4A4A 20px),
        repeating-linear-gradient(-45deg, #808080 0px, #808080 12px, #2D2D2D 12px, #2D2D2D 24px);
}

/* Product Details */
.product-details {
    padding: 20px;
    position: relative;
    background: #FFFFFF;
}

.wishlist-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    filter: grayscale(0);
    transition: transform 0.3s;
    z-index: 2;
    line-height: 1;
}

.wishlist-icon:hover {
    transform: scale(1.15);
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    margin-top: 5px;
}

.product-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.star {
    font-size: 16px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
    line-height: 1;
}

.color-swatches {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    cursor: pointer;
    transition: transform 0.2s;
}

.swatch:hover {
    transform: scale(1.1);
}

.swatch-yellow {
    background: #FFD700;
}

.swatch-orange {
    background: #FF8C00;
}

.swatch-teal {
    background: #00CED1;
}

.swatch-purple {
    background: #9370DB;
}

.quantity-selector {
    margin-bottom: 15px;
}

.quantity-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #E2E8F0;
    border-radius: 6px;
    padding: 4px 8px;
    width: fit-content;
    background: #FFFFFF;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #FF0000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
    padding: 0;
    line-height: 1;
}

.qty-btn:hover {
    background: #FEE2E2;
}

.qty-input {
    width: 35px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    background: transparent;
    padding: 0;
}

.add-cart-btn {
    width: 100%;
    padding: 12px;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.3s;
}

.add-cart-btn:hover {
    background: #FFC700;
}

.product-price {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-original {
    font-size: 15px;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-discount,
.price-current {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.view-details {
    display: inline-block;
    font-size: 13px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-details:hover {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 48px;
    }
    
    .backpack-container {
        width: 350px;
        height: 450px;
    }
    
    .yellow-background-shape {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        height: 500px;
    }
    
    .social-proof {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .arrow-decoration {
        display: none;
    }
    
    .trusted-by-section {
        padding: 60px 0;
    }
    
    .trusted-by-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .brand-logos {
        gap: 40px;
    }
    
    .brand-logo svg {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .brand-logos {
        gap: 30px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .brand-logo {
        flex: 0 0 calc(50% - 15px);
    }
    
    .brand-logo svg {
        height: 30px;
    }
}

@media (max-width: 968px) {
    .products-carousel-section {
        padding: 80px 0;
    }
    
    .products-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .carousel-headline {
        font-size: 48px;
    }
    
    .testimonial-section {
        padding: 80px 0;
    }
    
    .testimonial-content {
        gap: 40px;
    }
    
    .testimonial-headline {
        font-size: 48px;
    }
    
    .testimonial-visual {
        height: 500px;
    }
    
    .special-section {
        padding: 80px 0;
    }
    
    .special-title {
        font-size: 48px;
    }
    
    .feature-cards-grid {
        gap: 20px;
    }
    
    .feature-card-large {
        min-height: 500px;
    }
    
    .collections-headline {
        font-size: 40px;
    }
    
    .collection-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .collection-content.reverse {
        direction: ltr;
    }
    
    .collection-title {
        font-size: 36px;
    }
    
    .backpacks-display {
        height: 400px;
    }
    
    .child-backpack,
    .laptop-backpack {
        width: 200px;
        height: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .collections-section {
        padding: 60px 0;
    }
    
    .collections-headline {
        font-size: 32px;
    }
    
    .blue-section,
    .orange-section,
    .green-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .add-to-cart-btn {
        padding: 18px 30px;
        max-width: 100%;
    }
    
    .btn-text-left,
    .btn-price {
        font-size: 18px;
    }
    
    .delivery-message {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .collection-title {
        font-size: 28px;
    }
    
    .background-text {
        font-size: 80px;
    }
    
    .testimonial-bubble {
        max-width: 220px;
        padding: 15px;
    }
    
    .special-section {
        padding: 60px 0;
    }
    
    .special-title {
        font-size: 40px;
    }
    
    .special-description {
        font-size: 16px;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .feature-card-large {
        grid-row: span 1;
        min-height: 400px;
    }
    
    .feature-card {
        min-height: 250px;
    }
    
    .backpack-image-container {
        height: 300px;
    }
    
    .feature-card .backpack-image-container {
        height: 150px;
    }
    
    .card-title {
        font-size: 24px;
        bottom: 20px;
        left: 30px;
    }
    
    .decorative-squiggle,
    .decorative-arrow {
        display: none;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-visual {
        height: 400px;
    }
    
    .yellow-background-shape-testimonial {
        width: 400px;
        height: 400px;
        left: -30px;
    }
    
    .person-backpack {
        width: 150px;
        height: 300px;
        top: 50px;
        left: 30px;
    }
    
    .backpack-camo {
        width: 140px;
        height: 180px;
        top: 150px;
        left: 120px;
    }
    
    .testimonial-headline {
        font-size: 40px;
    }
    
    .quote-icon-large {
        font-size: 80px;
    }
    
    .products-carousel-section {
        padding: 60px 0;
    }
    
    .carousel-headline {
        font-size: 40px;
    }
    
    .carousel-description {
        font-size: 16px;
    }
    
    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card {
        min-width: auto;
    }
    
    .decorative-orange-lines,
    .decorative-black-dashes {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-carousel {
        grid-template-columns: 1fr;
    }
    
    .carousel-headline {
        font-size: 32px;
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    z-index: 5;
    padding: 100px 0;
    background-color: #FAFAFA;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-subheadline {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 15px;
}

.testimonials-headline {
    font-size: 56px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight-yellow-testimonial {
    background: #FFD700;
    padding: 0 8px;
    display: inline-block;
}

.testimonials-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-star {
    font-size: 20px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
    line-height: 1;
}

.testimonial-quote {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.author-title {
    font-size: 13px;
    color: #64748b;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding-top: 40px;
    border-top: 2px solid #E2E8F0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 968px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-headline {
        font-size: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-stats {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-headline {
        font-size: 40px;
    }
    
    .testimonials-description {
        font-size: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 30px;
        padding-top: 30px;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-headline {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Bundle Section */
.bundle-section {
    position: relative;
    z-index: 5;
    padding: 100px 0;
    background-color: #FF6B35;
}

.bundle-header {
    text-align: center;
    margin-bottom: 50px;
}

.bundle-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
}

.bundle-highlight {
    color: #FFFFFF;
}

.bundle-highlight-yellow {
    background: #FFD700;
    padding: 0 8px;
    display: inline-block;
    color: #1e293b;
}

.bundle-product-card {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 120px 1fr 450px;
    gap: 40px;
    align-items: start;
}

/* Bundle Left - Thumbnails */
.bundle-left {
    display: flex;
    flex-direction: column;
}

.bundle-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bundle-thumbnail {
    width: 100px;
    height: 120px;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.bundle-thumbnail.active {
    border-color: #FFD700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.bundle-thumbnail:hover {
    border-color: #FFD700;
    transform: scale(1.05);
}

.thumbnail-backpack {
    width: 100%;
    height: 100%;
    position: relative;
}

.thumb-backpack-top-teal {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 15px;
    background: #00CED1;
    border-radius: 8px 8px 0 0;
}

.thumb-backpack-body-black {
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: calc(100% - 12px);
    background: #000000;
    border-radius: 0 0 8px 8px;
}

/* Bundle Center - Main Product Display */
.bundle-center {
    background: #FFF9E6;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bundle-main-display {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.bundle-backpack-main {
    position: relative;
    width: 280px;
    height: 350px;
    z-index: 2;
}

.main-backpack-top-teal {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
    background: #00CED1;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.main-backpack-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 12px, #FFD700 12px, #FFD700 14px),
        repeating-linear-gradient(-45deg, transparent, transparent 12px, #FFFFFF 12px, #FFFFFF 14px);
    opacity: 0.6;
}

.main-backpack-body-black {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100% - 75px);
    background: #000000;
    border-radius: 0 0 20px 20px;
}

.main-backpack-pocket {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 140px;
    background: #000000;
    border: 3px solid #00CED1;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-pocket-label {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 7px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-pocket-brand {
    font-size: 36px;
    color: #FFD700;
    font-family: 'Brush Script MT', cursive;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

.main-backpack-handle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #00CED1;
    border-radius: 10px 10px 0 0;
}

.bundle-flash-drive {
    position: relative;
    width: 120px;
    height: 200px;
    z-index: 1;
}

.flash-drive-body {
    width: 100%;
    height: 100%;
    background: #FFD700;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flash-drive-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.flash-drive-size {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #000000;
    font-weight: 700;
    text-align: center;
}

/* Bundle Right - Product Info */
.bundle-right {
    display: flex;
    flex-direction: column;
}

.bundle-product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bundle-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bundle-stars {
    display: flex;
    gap: 2px;
}

.bundle-star {
    font-size: 18px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
    line-height: 1;
}

.bundle-rating-text {
    font-size: 14px;
    color: #64748b;
}

.bundle-product-name {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.bundle-colors {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bundle-colors-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.bundle-color-swatches {
    display: flex;
    gap: 10px;
}

.bundle-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    cursor: pointer;
    transition: transform 0.2s;
}

.bundle-swatch:hover {
    transform: scale(1.1);
}

.bundle-swatch-yellow {
    background: #FFD700;
}

.bundle-swatch-orange {
    background: #FF8C00;
}

.bundle-swatch-teal {
    background: #00CED1;
}

.bundle-swatch-purple {
    background: #9370DB;
}

.bundle-quantity {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bundle-quantity-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.bundle-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 6px 12px;
    width: fit-content;
}

.bundle-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #FF0000;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
    padding: 0;
    line-height: 1;
}

.bundle-qty-btn:hover {
    background: #FEE2E2;
}

.bundle-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    background: transparent;
    padding: 0;
}

.bundle-free-offer {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #E2E8F0;
}

.bundle-free-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bundle-gift-icon {
    font-size: 24px;
}

.bundle-free-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.bundle-free-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.bundle-buy-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 30px;
    background: #FFD700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.bundle-buy-btn:hover {
    background: #FFC700;
}

.bundle-buy-text {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.bundle-buy-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bundle-price {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.bundle-cart-icon {
    font-size: 22px;
    filter: brightness(0);
}

.bundle-delivery {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bundle-delivery-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bundle-lightning-icon {
    font-size: 20px;
    color: #4169E1;
}

.bundle-delivery-label {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.bundle-delivery-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    margin-left: 28px;
}

.bundle-security {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bundle-norton-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bundle-norton-check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.bundle-norton-text {
    flex: 1;
}

.bundle-norton-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.bundle-norton-subtitle {
    font-size: 12px;
    color: #64748b;
}

.bundle-security-text {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    margin-left: 52px;
}

/* Service Guarantees Section */
.service-guarantees-section {
    position: relative;
    z-index: 5;
    padding: 80px 0;
    background-color: #FF6B35;
}

.service-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-guarantee {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.service-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 10px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.service-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .bundle-product-card {
        grid-template-columns: 100px 1fr 400px;
        gap: 30px;
        padding: 40px;
    }
    
    .bundle-backpack-main {
        width: 240px;
        height: 300px;
    }
}

@media (max-width: 968px) {
    .bundle-section {
        padding: 80px 0;
    }
    
    .bundle-title {
        font-size: 40px;
    }
    
    .bundle-product-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bundle-left {
        flex-direction: row;
        justify-content: center;
    }
    
    .bundle-thumbnails {
        flex-direction: row;
    }
    
    .bundle-thumbnail {
        width: 80px;
        height: 100px;
    }
    
    .bundle-center {
        padding: 30px;
    }
    
    .service-guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bundle-section {
        padding: 60px 0;
    }
    
    .bundle-title {
        font-size: 32px;
    }
    
    .bundle-product-card {
        padding: 30px 20px;
    }
    
    .bundle-backpack-main {
        width: 200px;
        height: 250px;
    }
    
    .bundle-flash-drive {
        width: 100px;
        height: 160px;
    }
    
    .bundle-product-name {
        font-size: 24px;
    }
    
    .service-guarantees-section {
        padding: 60px 0;
    }
    
    .service-guarantees-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .bundle-title {
        font-size: 24px;
    }
    
    .bundle-main-display {
        flex-direction: column;
        gap: 20px;
    }
    
    .bundle-backpack-main {
        width: 180px;
        height: 220px;
    }
    
    .bundle-flash-drive {
        width: 80px;
        height: 120px;
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    z-index: 5;
    padding: 100px 0;
    background-color: #FFFFFF;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subheadline {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 15px;
}

.faq-headline {
    font-size: 56px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.faq-highlight {
    background: #FFD700;
    padding: 0 8px;
    display: inline-block;
}

.faq-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #FFFFFF;
    border: 1.5px solid #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF6B35;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s;
    padding: 0;
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    display: block;
}

.faq-item-open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
}

.faq-answer-visible {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 968px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-headline {
        font-size: 48px;
    }
    
    .faq-items {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-headline {
        font-size: 40px;
    }
    
    .faq-description {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-toggle {
        width: 36px;
        height: 36px;
    }
    
    .faq-arrow {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer-visible {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-headline {
        font-size: 32px;
    }
    
    .faq-subheadline {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 18px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
    }
    
    .faq-arrow {
        width: 16px;
        height: 16px;
    }
}

/* CTA Banner Section */
.cta-banner-section {
    position: relative;
    z-index: 5;
    padding: 80px 0;
    background-color: #FFFFFF;
}

.cta-banner {
    background: #FFD700;
    border-radius: 30px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.cta-banner-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.cta-banner-text {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
}

.cta-banner-text strong {
    color: #1e293b;
    font-weight: 700;
}

.cta-browse-link {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.cta-browse-link:hover {
    opacity: 0.7;
}

.cta-banner-right {
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 2;
}

.cta-backpack {
    position: relative;
    width: 180px;
    height: 220px;
}

.cta-backpack-left {
    transform: rotate(-5deg);
}

.cta-backpack-right {
    transform: rotate(5deg);
}

.cta-backpack-camo-gray {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, #808080 0px, #808080 10px, #4A4A4A 10px, #4A4A4A 20px),
        repeating-linear-gradient(-45deg, #808080 0px, #808080 12px, #2D2D2D 12px, #2D2D2D 24px);
    border-radius: 15px;
}

.cta-backpack-camo-olive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, #4A5D23 0px, #4A5D23 12px, #6B7C3A 12px, #6B7C3A 24px),
        repeating-linear-gradient(-45deg, #2D3A14 0px, #2D3A14 15px, #4A5D23 15px, #4A5D23 30px);
    border-radius: 15px;
}

.cta-backpack-panel {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
    background: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cta-backpack-text-vertical {
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
}

.cta-backpack-flap {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cta-backpack-text {
    font-size: 10px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-wavy-pattern {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    opacity: 0.3;
    z-index: 1;
}

.cta-wavy-left {
    left: 0;
    background-image: url("https://via.placeholder.com/100x400/FFFFFF/FFD700?text=Wave");
    background-repeat: repeat-y;
}

.cta-wavy-right {
    right: 0;
    background-image: url("https://via.placeholder.com/100x400/FFFFFF/FFD700?text=Wave");
    background-repeat: repeat-y;
}

/* Footer */
.footer {
    position: relative;
    z-index: 5;
    background-color: #1e293b;
    padding: 60px 0 30px;
    color: #FFFFFF;
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    font-size: 32px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(1000%);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-nav-link:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: opacity 0.3s;
    border-radius: 50%;
}

.footer-social-icon:hover {
    opacity: 0.7;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-separator {
    height: 1px;
    background-color: #64748b;
    margin: 30px 0;
    opacity: 0.3;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

@media (max-width: 968px) {
    .cta-banner-section {
        padding: 60px 0;
    }
    
    .cta-banner {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-banner-right {
        justify-content: center;
    }
    
    .cta-backpack {
        width: 150px;
        height: 180px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cta-banner-text {
        font-size: 28px;
    }
    
    .cta-backpack {
        width: 120px;
        height: 150px;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 30px 20px;
    }
    
    .cta-banner-text {
        font-size: 24px;
    }
    
    .cta-banner-right {
        flex-direction: column;
    }
    
    .cta-backpack {
        width: 100px;
        height: 120px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

