@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
	--primary-color: #659739 ;
	--white-color: #ffffff;
}

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

body {
	font-family: 'Poppins', sans-serif;
	background-color: #ffffff;
}


h1,h2,h3,h4,h5,h6{
	font-family: 'Poppins', sans-serif;
}

/* =========================
   EBOOK HERO SECTION
========================= */
.ebook-hero {
    position: relative;
    padding: 110px 0 90px;
    background: linear-gradient(135deg,#18451f 0%, #1e5527 40%, #0f2e13 100%);
    overflow: hidden;
    color: #fff;
}

/* background glow effect - UPDATED to light green */
.ebook-hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background: radial-gradient(circle, rgba(101, 151, 57, 0.35) 0%, rgba(101, 151, 57, 0) 70%);
    top:-200px;
    left:-150px;
    filter: blur(60px);
}

.ebook-hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(101,151,57,0.35) 0%, rgba(101,151,57,0) 70%);
    bottom:-200px;
    right:-120px;
    filter: blur(70px);
}

/* container */
.ebook-hero-container{
    width:1200px;
    max-width:95%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}

/* text side */
.ebook-hero-content{
    max-width:560px;
}

.ebook-title{
    font-size:54px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:22px;
    letter-spacing:-1px;
}

/* UPDATED: gradient from dark green to light green */
.ebook-title span{
    background: linear-gradient(90deg, #659739, #7eb34d);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* subtitle */
.ebook-subtitle{
    font-size:18px;
    line-height:1.7;
    color:#cbd5e1;
    margin-bottom:35px;
}

/* buttons */
.ebook-hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* UPDATED: primary button - light green gradient */
.btn-primary{
    background: linear-gradient(90deg, #659739, #7eb34d);
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:0.25s;
    box-shadow:0 10px 25px rgba(101,151,57,0.35);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(101,151,57,0.5);
}

/* UPDATED: outline button - light green border */
.btn-outline{
    border:1px solid rgba(101,151,57,0.35);
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:0.25s;
    backdrop-filter: blur(6px);
}

.btn-outline:hover{
    background:rgba(101,151,57,0.12);
    transform:translateY(-3px);
}

/* image side */
.ebook-hero-image img{
    width:480px;
    max-width:100%;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
    transform:perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition:0.4s;
}

.ebook-hero-image img:hover{
    transform:perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.03);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){
    .ebook-title{
        font-size:40px;
    }

    .ebook-hero-container{
        flex-direction:column;
        text-align:center;
    }

    .ebook-hero-content{
        max-width:100%;
    }

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

    .ebook-hero-image img{
        margin-top:40px;
        transform:none;
    }
}

@media(max-width:576px){
    .ebook-hero{
        padding:80px 0 70px;
    }

    .ebook-title{
        font-size:32px;
    }

    .ebook-subtitle{
        font-size:16px;
    }
}


/* ========================================
   SIMPLE E-BOOK SECTION - ADD TO CART ONLY
   2 Products Per Row on Mobile
   ======================================== */

.ebook_simple_section {
    --primary: #659739;
    --primary-dark: #18451f;
    --primary-light: #e2f0d4;
    --dark: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 60px 0;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION HEADER ===== */
.ebook_simple_header {
    text-align: center;
    margin-bottom: 40px;
}

.ebook_simple_title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.ebook_simple_underline {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ===== E-BOOKS GRID ===== */
.ebook_simple_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== SIMPLE E-BOOK CARD ===== */
.ebook_simple_card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ebook_simple_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -10px rgba(101, 151, 57, 0.2);
    border-color: var(--primary);
}

/* Sale Badge */
.ebook_simple_sale {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Book Cover */
.ebook_simple_cover {
    padding: 25px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-bottom: 1px solid var(--border);
}

.ebook_simple_img {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ebook_simple_card:hover .ebook_simple_img {
    transform: scale(1.02);
}

.ebook_simple_placeholder {
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Book Details */
.ebook_simple_details {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ebook_simple_name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 45px;
}

/* Price */
.ebook_simple_price {
    margin-bottom: 15px;
}

.ebook_simple_old {
    font-size: 13px;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 8px;
}

.ebook_simple_new {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

/* Free Badge */
.ebook_simple_free {
    margin-bottom: 15px;
}

.ebook_simple_free span {
    background: #e6f7e6;
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Add to Cart Button */
.ebook_simple_action {
    margin-top: auto;
}

.ebook_simple_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.ebook_simple_btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(101, 151, 57, 0.3);
}

.ebook_simple_btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.ebook_simple_btn.added {
    background: #10b981;
}

/* No Products */
.ebook_simple_empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
}

.ebook_simple_empty p {
    font-size: 16px;
    color: var(--gray);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
/* Desktop Large */
@media (max-width: 1200px) {
    .ebook_simple_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .ebook_simple_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ebook_simple_title {
        font-size: 32px;
    }
    
    .ebook_simple_cover {
        min-height: 180px;
    }
}

/* Mobile - 2 Products Per Row (Main Requirement) */
@media (max-width: 768px) {
    .ebook_simple_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ebook_simple_title {
        font-size: 28px;
    }
    
    .ebook_simple_cover {
        padding: 20px;
        min-height: 160px;
    }
    
    .ebook_simple_img {
        max-width: 100px;
    }
    
    .ebook_simple_details {
        padding: 14px;
    }
    
    .ebook_simple_name {
        font-size: 14px;
        min-height: 40px;
        margin-bottom: 8px;
    }
    
    .ebook_simple_old {
        font-size: 11px;
    }
    
    .ebook_simple_new {
        font-size: 18px;
    }
    
    .ebook_simple_btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .ebook_simple_btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Small Mobile - Still 2 Products, Just Smaller */
@media (max-width: 480px) {
    .ebook_simple_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .ebook_simple_title {
        font-size: 24px;
    }
    
    .ebook_simple_underline {
        width: 50px;
        height: 2px;
    }
    
    .ebook_simple_cover {
        padding: 15px;
        min-height: 140px;
    }
    
    .ebook_simple_img {
        max-width: 85px;
    }
    
    .ebook_simple_placeholder {
        width: 70px;
        height: 70px;
    }
    
    .ebook_simple_placeholder svg {
        width: 35px;
        height: 35px;
    }
    
    .ebook_simple_details {
        padding: 12px;
    }
    
    .ebook_simple_name {
        font-size: 13px;
        min-height: 35px;
        margin-bottom: 6px;
    }
    
    .ebook_simple_new {
        font-size: 16px;
    }
    
    .ebook_simple_price {
        margin-bottom: 10px;
    }
    
    .ebook_simple_btn {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .ebook_simple_btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Extra Small Devices - Still 2 Products */
@media (max-width: 360px) {
    .ebook_simple_grid {
        gap: 10px;
    }
    
    .ebook_simple_cover {
        padding: 12px;
        min-height: 120px;
    }
    
    .ebook_simple_img {
        max-width: 70px;
    }
    
    .ebook_simple_name {
        font-size: 12px;
        min-height: 32px;
    }
    
    .ebook_simple_new {
        font-size: 14px;
    }
    
    .ebook_simple_btn {
        padding: 6px 8px;
        font-size: 11px;
    }
}
//* ========================================
   PURPLE HERO SECTION - WHITE BACKGROUND
   Modern, Sleek, Mobile Optimized
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.purple_hero_section {
    --blue-deep: #1e40af;
    --blue-bright: #3b82f6;
    --blue-soft: #60a5fa;
    --blue-mist: #dbeafe;
    --blue-glass: rgba(59, 130, 246, 0.1);
    --dark: #1e1b4b;
    --gray: #475569;
    --white: #ffffff;
    --white-off: #faf9ff;
    
    font-family: 'Inter', sans-serif;
    background: var(--white);
    padding: 50px 0 70px;
    position: relative;
    overflow: hidden;
}

/* subtle background pattern */
.purple_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--blue-mist) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
}

.hero_container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== GRID LAYOUT ===== */
.hero_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* left column - large card */
.hero_left_col {
    grid-column: span 1;
}

/* right column - small cards grid */
.hero_right_col {
    grid-column: span 1;
}

.small_cards_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.small_card_wrap {
    height: 100%;
}

/* ===== PREMIUM CARD STYLES ===== */
.premium_card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    background: var(--white);
}

.premium_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -12px rgba(37, 99, 235, 0.3);
    border-color: var(--blue-soft);
}

.card_link {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    isolation: isolate;
}

.premium_card_large .card_link {
    min-height: 520px;
}

.premium_card_small .card_link {
    min-height: 240px;
}

/* gradient overlay */
.card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(30, 27, 75, 0.95) 0%,
        rgba(37, 99, 235, 0.6) 40%,
        rgba(59, 130, 246, 0.2) 80%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.premium_card:hover .card_overlay {
    background: linear-gradient(to top, 
        rgba(30, 27, 75, 0.98) 0%,
        rgba(37, 99, 235, 0.7) 40%,
        rgba(59, 130, 246, 0.3) 80%);
}

/* card content */
.card_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
    color: white;
    transition: transform 0.4s ease;
}

.small_content {
    padding: 22px 20px;
}

.premium_card:hover .card_content {
    transform: translateY(-6px);
}

/* pill tag */
.pill_tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* titles */
.card_title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px 0;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 90%;
    letter-spacing: -0.02em;
}

.small_title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 6px 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* descriptions */
.card_desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.95);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 85%;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    font-weight: 400;
}

.small_desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 40px;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.premium_card_small:hover .small_desc {
    opacity: 1;
}

/* button / indicator */
.card_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-bright);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px -8px rgba(0,0,0,0.3);
}

.btn_icon {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.premium_card:hover .btn_icon {
    transform: translateX(6px);
}

.small_indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.premium_card_small:hover .small_indicator {
    background: var(--blue-bright);
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 15px var(--blue-bright);
}

/* ===== FLOATING TAGS (blue theme) ===== */
.floating_tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    max-width: calc(100% - 40px);
}

.small_tag {
    top: 15px;
    left: 15px;
}

.floating_tag_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 7px 18px;
    border-radius: 50px;
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 18px -6px rgba(37, 99, 235, 0.2);
    border: 1px solid var(--blue-soft);
    transition: all 0.2s ease;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating_tag_link .dot {
    width: 8px;
    height: 8px;
    background: var(--blue-bright);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--blue-bright);
}

.floating_tag_link:hover {
    background: var(--blue-bright);
    color: white;
    border-color: var(--blue-bright);
    transform: translateY(-2px);
}

.floating_tag_link:hover .dot {
    background: white;
    box-shadow: 0 0 10px white;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet landscape */
@media (max-width: 1100px) {
    .card_title {
        font-size: 38px;
    }
    
    .premium_card_large .card_link {
        min-height: 480px;
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .hero_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero_left_col,
    .hero_right_col {
        grid-column: span 1;
    }
    
    .premium_card_large .card_link {
        min-height: 450px;
    }
    
    .card_title {
        font-size: 42px;
        max-width: 100%;
    }
    
    .card_desc {
        max-width: 90%;
    }
}

/* Large mobile */
@media (max-width: 600px) {
    .purple_hero_section {
        padding: 30px 0 50px;
    }
    
    .hero_container {
        padding: 0 16px;
    }
    
    .small_cards_grid {
        gap: 16px;
    }
    
    .premium_card_large .card_link {
        min-height: 400px;
    }
    
    .card_content {
        padding: 25px 20px;
    }
    
    .card_title {
        font-size: 34px;
        margin-bottom: 8px;
    }
    
    .card_desc {
        font-size: 15px;
        margin-bottom: 18px;
        max-width: 100%;
        -webkit-line-clamp: 2;
    }
    
    .pill_tag {
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 14px;
    }
    
    .card_btn {
        padding: 10px 22px;
        font-size: 13px;
    }
    
    .premium_card_small .card_link {
        min-height: 200px;
    }
    
    .small_title {
        font-size: 20px;
    }
    
    .small_desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .floating_tag_link {
        padding: 5px 14px;
        font-size: 12px;
    }
    
    .small_indicator {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: 15px;
        right: 15px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .small_cards_grid {
        grid-template-columns: 1fr;  /* stacked on very small */
        gap: 16px;
    }
    
    .premium_card_large .card_link {
        min-height: 380px;
    }
    
    .card_title {
        font-size: 30px;
    }
    
    .small_title {
        font-size: 22px;  /* larger when stacked */
    }
    
    .premium_card_small .card_link {
        min-height: 220px;
    }
    
    .floating_tag {
        top: 15px;
        left: 15px;
    }
    
    .floating_tag_link {
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .card_title {
        font-size: 26px;
    }
    
    .card_desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .small_title {
        font-size: 20px;
    }
    
    .small_desc {
        font-size: 11px;
    }
    
    .card_btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .floating_tag_link {
        max-width: 130px;
        font-size: 10px;
    }
}

/* Touch device optimization */
@media (hover: none) {
    .small_desc {
        max-height: 40px;
        opacity: 0.9;
        margin-top: 4px;
    }
    
    .premium_card {
        transform: none !important;
    }
}
/* textSliderSec start */
.marquee-wrapper{
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	margin-bottom: 50px;
}

.text-slider{
	font-size: 150px;
	height: 180px;
	line-height: 1;
	font-weight: 900;
	text-transform: capitalize;
	margin-right: 20px;
	color: var(--primary-color);
/* 	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--primary-color); */
}

.marquee-inner.to-left{
	animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
	0% {
		left: 0
	}

	to {
		left: -100%
	}
}

.marquee-inner{
	position: absolute;
	display: flex;
	width: 100%;
}

.marqee-list{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	width: 100%;
}

.marquee-item{
	float: left;
	transition: animation .2s ease-out;
	display: flex;
	align-items: center;
}

.text-slider.style-border{
	position: relative;
	padding-left: 85px;
}

.text-slider.style-border:before{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    width: 80px;
    height: 16px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    /* opacity: 0.7; */
}
/* textSliderSec end */

/* ========================================
   PREMIUM LEAGUES SECTION - BLUE THEME
   Matching with Hero Section
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.premium_leagues_section {
    --blue-deep: #1e40af;
    --blue-bright: #3b82f6;
    --blue-soft: #60a5fa;
    --blue-mist: #dbeafe;
    --blue-light: #eff6ff;
    --dark: #1e1b4b;
    --gray: #64748b;
    --white: #ffffff;
    
    font-family: 'Inter', sans-serif;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 100%);
    overflow: hidden;
}

/* ===== WAVE DECORATIONS ===== */
.wave_top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.wave_bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.wave_svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ===== CONTAINER ===== */
.premium_leagues_section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

/* ===== SECTION HEADER ===== */
.section_header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.section_subtitle {
    display: inline-block;
    background: var(--blue-mist);
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.section_title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.title_highlight {
    color: var(--blue-bright);
    position: relative;
    display: inline-block;
}

.title_highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--blue-mist);
    z-index: -1;
    border-radius: 4px;
}

.section_desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* ===== LEAGUES GRID ===== */
.leagues_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

/* staggered animation */
.league_card_wrapper {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* alternate card positioning */
.card_up {
    transform: translateY(0);
}

.card_down {
    transform: translateY(30px);
}

@media (min-width: 992px) {
    .card_down {
        transform: translateY(40px);
    }
}

/* ===== LEAGUE CARD ===== */
.league_card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    background: var(--white);
}

.league_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 45px -12px rgba(37, 99, 235, 0.3);
    border-color: var(--blue-soft);
}

.league_card_link {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    isolation: isolate;
}

/* gradient overlay */
.card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, 
        rgba(30, 27, 75, 0.4) 0%,
        rgba(37, 99, 235, 0.6) 70%,
        rgba(59, 130, 246, 0.8) 100%);
    z-index: 1;
    transition: all 0.4s ease;
    mix-blend-mode: multiply;
}

.league_card:hover .card_overlay {
    background: linear-gradient(145deg, 
        rgba(30, 27, 75, 0.5) 0%,
        rgba(37, 99, 235, 0.7) 60%,
        rgba(59, 130, 246, 0.9) 100%);
}

/* floating badge */
.league_badge {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 6px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.league_card:hover .league_badge {
    transform: translateY(-3px);
    background: var(--blue-bright);
    border-color: white;
}

.badge_icon {
    font-size: 14px;
}

/* ===== CARD CONTENT ===== */
.league_card_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;
    z-index: 3;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease;
}

.league_card:hover .league_card_content {
    transform: translateY(-8px);
}

/* logo circle */
.logo_circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.league_card:hover .logo_circle {
    border-color: white;
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.4);
}

.logo_inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #2969ed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.league_logo {
    width: 45px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* title */
.league_title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px 0;
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 90%;
}

/* description */
.league_desc_wrap {
    max-width: 90%;
    margin: 0 auto 20px;
}

.league_desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* explore link */
.explore_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 40px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.league_card:hover .explore_link {
    background: var(--blue-bright);
    border-color: white;
    gap: 12px;
    box-shadow: 0 10px 20px -8px rgba(0,0,0,0.3);
}

.arrow_icon {
    transition: transform 0.3s ease;
}

.league_card:hover .arrow_icon {
    transform: translateX(5px);
}

/* corner accent */
.corner_accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-bright) 0%, transparent 100%);
    opacity: 0.3;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: 32px 0 32px 0;
}

.league_card:hover .corner_accent {
    opacity: 0.6;
    width: 80px;
    height: 80px;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet landscape */
@media (max-width: 1100px) {
    .league_card_link {
        height: 440px;
    }
    
    .league_title {
        font-size: 32px;
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .premium_leagues_section {
        padding: 60px 0;
    }
    
    .section_title {
        font-size: 44px;
    }
    
    .leagues_grid {
        gap: 25px;
    }
    
    .league_card_link {
        height: 420px;
    }
    
    .league_title {
        font-size: 30px;
    }
    
    .logo_circle {
        width: 90px;
        height: 90px;
    }
    
    .logo_inner {
        width: 60px;
        height: 60px;
    }
    
    .league_logo {
        width: 35px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .premium_leagues_section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section_header {
        margin-bottom: 40px;
    }
    
    .section_subtitle {
        font-size: 12px;
        padding: 5px 16px;
        margin-bottom: 15px;
    }
    
    .section_title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .section_desc {
        font-size: 15px;
    }
    
    .leagues_grid {
        grid-template-columns: 1fr;  /* stacked on mobile */
        gap: 25px;
    }
    
    .card_down {
        transform: translateY(0);  /* remove stagger on mobile */
    }
    
    .league_card_link {
        height: 400px;
    }
    
    .league_card_content {
        padding: 30px 20px;
    }
    
    .league_title {
        font-size: 32px;
    }
    
    .league_desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .logo_circle {
        width: 85px;
        height: 85px;
        margin-bottom: 15px;
    }
    
    .wave_svg {
        height: 40px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .section_title {
        font-size: 32px;
    }
    
    .section_desc {
        font-size: 14px;
    }
    
    .league_card_link {
        height: 380px;
    }
    
    .league_title {
        font-size: 28px;
    }
    
    .league_badge {
        top: 15px;
        right: 15px;
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .explore_link {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .logo_circle {
        width: 75px;
        height: 75px;
    }
    
    .logo_inner {
        width: 50px;
        height: 50px;
    }
    
    .league_logo {
        width: 30px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .league_title {
        font-size: 24px;
    }
    
    .league_desc {
        -webkit-line-clamp: 2;
        font-size: 12px;
    }
    
    .league_card_content {
        padding: 25px 15px;
    }
}

/* Touch optimization */
@media (hover: none) {
    .league_card {
        transform: none !important;
    }
    
    .explore_link {
        background: var(--blue-bright);
    }
    
    .league_desc {
        max-height: 60px;
    }
}

/* ========================================
   UPCOMING MATCHES - DARK MODE
   Dark Background + Bright Cards
   ======================================== */

.matches_dark_section {
    --blue-bright: #3b82f6;
    --blue-primary: #2563eb;
    --blue-deep: #1e40af;
    --blue-glow: rgba(59, 130, 246, 0.3);
    --dark-bg: #0a0a0f;
    --dark-card: #14141f;
    --dark-surface: #1e1e2d;
    --text-light: #ffffff;
    --text-dim: #a0a0b0;
    
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    padding: 70px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

/* dark background effects */
.dark_bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dark_grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.dark_glow {
    position: absolute;
    top: 20%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.4;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* ===== DARK HEADER ===== */
.dark_header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dark_subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.dark_title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--text-light);
}

.dark_title span {
    color: var(--blue-primary);
    text-shadow: 0 0 20px var(--blue-glow);
}

.dark_count {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 60px;
    padding: 8px 20px;
}

.count_num {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
}

.count_text {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dark_desc {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 45px;
    max-width: 550px;
    line-height: 1.6;
    border-left: 3px solid var(--blue-primary);
    padding-left: 20px;
}

/* ===== DESKTOP GRID ===== */
.dark_grid_desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 45px;
}

/* ===== DARK CARD ===== */
.dark_card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 3/4;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.dark_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 45px -12px rgba(59, 130, 246, 0.3);
    border-color: var(--blue-primary);
}

.dark_card_link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.card_dark_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.6s ease;
}

.dark_card:hover .card_dark_bg {
    transform: scale(1.1);
}

.card_dark_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(20, 20, 31, 0.8) 40%,
        rgba(37, 99, 235, 0.4) 100%);
    z-index: 2;
}

/* live badge */
.card_live_badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 5px 12px;
}

.live_dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 15px #ff4444;
    animation: pulse 1.5s infinite;
}

.live_text {
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* shirts section - prominent */
.card_shirts_wrap {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
}

.shirt_box {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.dark_card:hover .shirt_box {
    border-color: var(--blue-primary);
    transform: scale(1.1);
}

.shirt_left {
    transform: rotate(-5deg);
}

.shirt_right {
    transform: rotate(5deg);
}

.shirt_image {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.vs_circle {
    width: 40px;
    height: 40px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 0 20px var(--blue-primary);
}

/* content */
.card_dark_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 4;
    color: white;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
}

.card_dark_title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: white;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.card_dark_info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.info_row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.info_icon {
    font-size: 14px;
}

.card_dark_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
}

.price_wrap {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price_label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.price_value {
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 15px var(--blue-primary);
}

.book_btn {
    background: var(--blue-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.dark_card:hover .book_btn {
    background: var(--blue-bright);
    transform: translateX(-3px);
}

/* corner accent */
.card_corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(59, 130, 246, 0.3) 50%);
    z-index: 3;
}

/* ===== MOBILE SLIDER ===== */
.dark_slider_mobile {
    display: none;
    width: 100%;
}

.darkSwiper {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 40px;
}

.mobile_dark_card {
    width: 100%;
    aspect-ratio: 3/3.8;
}

.mobile_shirts {
    top: 40px;
    gap: 8px;
}

.small_shirt {
    width: 55px;
    height: 55px;
}

.small_shirt .shirt_image {
    width: 35px;
}

.vs_mini {
    color: white;
    font-weight: 700;
    font-size: 12px;
    background: var(--blue-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_title {
    font-size: 18px;
}

.mobile_info {
    font-size: 11px;
    gap: 4px;
}

.mobile_footer {
    padding-top: 12px;
}

.book_mini {
    width: 35px;
    height: 35px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* pagination */
.dark_pagination {
    position: relative;
    margin-top: 20px;
}

.dark_pagination .swiper-pagination-bullet {
    background: rgba(59, 130, 246, 0.3);
    opacity: 1;
}

.dark_pagination .swiper-pagination-bullet-active {
    background: var(--blue-primary);
    width: 25px;
    border-radius: 10px;
}

/* ===== VIEW BUTTON ===== */
.dark_view_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--blue-primary);
    margin-top: 15px;
}

.dark_view_btn:hover {
    background: var(--blue-primary);
    gap: 15px;
    box-shadow: 0 10px 25px -5px var(--blue-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .dark_grid_desktop {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .dark_grid_desktop {
        display: none;
    }
    
    .dark_slider_mobile {
        display: block;
    }
    
    .dark_title {
        font-size: 38px;
    }
    
    .dark_count {
        padding: 5px 15px;
    }
    
    .count_num {
        font-size: 22px;
    }
    
    .count_text {
        font-size: 10px;
    }
    
    .dark_desc {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .dark_title {
        font-size: 32px;
    }
    
    .dark_view_btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/* ========================================
   PREMIUM TESTIMONIALS SECTION
   Modern Design - Fully Responsive
   ======================================== */

.premium-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.premium-testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(101, 151, 57, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.premium-testimonials::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 69, 31, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #e2f0d4;
    color: #659739;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.section-title span {
    color: #659739;
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #e2f0d4;
    z-index: -1;
    border-radius: 4px;
}

.section-subtitle {
    font-size: 16px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonial Card */
.testimonials-wrapper {
    position: relative;
    padding: 20px 0 50px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(101, 151, 57, 0.1);
    border-color: #e2f0d4;
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 48px;
    color: #659739;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .quote-icon i {
    opacity: 0.4;
}

/* Rating Stars */
.rating {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.rating i {
    color: #fbbf24;
    font-size: 14px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-text strong {
    color: #659739;
    font-weight: 700;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.author-info span {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-info span::before {
    content: '✓';
    color: #10b981;
    font-size: 10px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #659739;
    box-shadow: 0 6px 15px rgba(101, 151, 57, 0.3);
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
    color: #ffffff;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 16px;
    color: #659739;
    transition: color 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 24px;
    background: #659739;
    border-radius: 4px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .premium-testimonials {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .quote-icon i {
        font-size: 40px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .swiper-button-next i,
    .swiper-button-prev i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-badge {
        font-size: 10px;
        padding: 5px 14px;
    }
    
    .testimonial-card {
        padding: 20px 16px;
    }
    
    .rating i {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .author-info h4 {
        font-size: 14px;
    }
    
    .author-info span {
        font-size: 11px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px;
        height: 32px;
        display: none;
    }
    
    .swiper-pagination {
        display: block !important;
    }
}

.show_parent_left {
    position: sticky;
    top: 0;
}

/* ========================================
   PROFESSIONAL CATEGORY PAGE STYLES
   Clean & Modern Design - Green Theme
   Fully Responsive
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
}

/* Container */
.category-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HERO SECTION - Clean & Modern
   ======================================== */
.category-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0 60px;
    position: relative;
    border-bottom: 1px solid #e2f0d4;
}

.category-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.category-hero-content {
    flex: 1.2;
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 24px;
}

.hero-badge span {
    display: inline-block;
    background: #e2f0d4;
    color: #659739;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Title */
.category-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* Hero Description */
.category-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 32px;
    max-width: 90%;
}

/* Buttons - Green Theme */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #659739 0%, #18451f 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(101, 151, 57, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7eb34d 0%, #659739 100%);
    transform: translateY(-2px);
    gap: 14px;
    box-shadow: 0 8px 20px rgba(101, 151, 57, 0.3);
}

.btn-primary-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #659739 0%, #18451f 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(101, 151, 57, 0.15);
}

.btn-primary-small:hover {
    background: linear-gradient(135deg, #7eb34d 0%, #659739 100%);
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(101, 151, 57, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #e2f0d4;
    border-color: #e2f0d4;
    color: #659739;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #659739;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.btn-outline:hover {
    background: #e2f0d4;
    border-color: #659739;
    gap: 12px;
    color: #18451f;
}

.btn-sold {
    display: inline-block;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 10px;
    cursor: default;
    text-align: center;
}

/* Hero Image */
.category-hero-image {
    flex: 1;
}

.hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -15px rgba(101, 151, 57, 0.15);
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.03);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.category-products-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.section-badge {
    display: inline-block;
    background: #e2f0d4;
    color: #659739;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.section-title span {
    color: #659739;
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #e2f0d4;
    z-index: -1;
    border-radius: 4px;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Collection Card */
.collection-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2f0d4;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(101, 151, 57, 0.15);
    border-color: #e2f0d4;
}

.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.collection-card:hover .card-image img {
    transform: scale(1.05);
}

.sold-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-content {
    padding: 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #0f172a;
    line-height: 1.4;
}

/* Match Card */
.match-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2f0d4;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(101, 151, 57, 0.15);
    border-color: #e2f0d4;
}

/* Teams Section */
.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team-shirt {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.match-card:hover .team-shirt {
    transform: scale(1.05);
}

.vs-badge {
    font-size: 14px;
    font-weight: 700;
    color: #659739;
    background: #e2f0d4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Match Title */
.match-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 16px 0;
    color: #0f172a;
}

/* Match Details */
.match-details {
    background: #e2f0d4;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    flex: 1;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    margin-bottom: 10px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row svg {
    color: #659739;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Card Footer */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2f0d4;
    padding-top: 18px;
}

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

.price-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 14px;
    font-weight: 600;
    color: #659739;
}

.amount {
    font-size: 24px;
    font-weight: 800;
    color: #659739;
    line-height: 1;
}

/* ========================================
   FULLY RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .category-hero-title {
        font-size: 48px;
    }
    
    .products-grid {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .category-container {
        padding: 0 20px;
    }
    
    .category-hero {
        padding: 50px 0 40px;
    }
    
    .category-hero-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .category-hero-content {
        text-align: center;
    }
    
    .category-hero-title {
        font-size: 36px;
    }
    
    .category-hero-desc {
        max-width: 100%;
        font-size: 16px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-img {
        height: 320px;
    }
    
    .category-products-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-desc {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .match-card {
        padding: 20px;
    }
    
    .team-shirt {
        width: 60px;
        height: 60px;
    }
    
    .vs-badge {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .match-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .category-hero-title {
        font-size: 28px;
    }
    
    .category-hero-desc {
        font-size: 14px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .team-shirt {
        width: 50px;
        height: 50px;
    }
    
    .vs-badge {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    .amount {
        font-size: 20px;
    }
    
    .btn-primary-small {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ========================================
   BUCKET LIST EVENTS - PREMIUM WHITE DESIGN
   Elegant, Different from Other Sections
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

.bucket_events_section {
    --primary: #659739;
    --primary-light: #e2f0d4;
    --primary-soft: #e2f0d4;
    --dark: #1e1b4b;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05);
    --shadow-md: 0 20px 35px -10px rgba(101, 151, 57, 0.15);
    --shadow-hover: 0 30px 45px -12px rgba(101, 151, 57, 0.25);
    
    font-family: 'Inter', sans-serif;
    position: relative;
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== ELEGANT HEADER ===== */
.bucket_header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 30px;
}

.header_left {
    flex: 1;
    min-width: 300px;
}

.bucket_subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.bucket_title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.bucket_title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.bucket_title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}

.header_right {
    flex: 1;
    min-width: 300px;
}

.bucket_desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
    font-style: italic;
    border-left: 3px solid var(--primary-soft);
    padding-left: 25px;
}

/* divider */
.section_divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 30px 0 50px;
}

/* ===== GRID LAYOUT ===== */
.bucket_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* ===== BUCKET CARD ===== */
.bucket_card_wrapper {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.bucket_card_wrapper:nth-child(1) { animation-delay: 0.1s; }
.bucket_card_wrapper:nth-child(2) { animation-delay: 0.2s; }
.bucket_card_wrapper:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bucket_card {
    position: relative;
    background: var(--white);
    border-radius: 32px;
    padding: 35px 25px 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(101, 151, 57, 0.1);
    overflow: hidden;
}

.bucket_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-soft);
}

/* card number */
.card_number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.bucket_card:hover .card_number {
    color: var(--primary-soft);
    transform: scale(1.1);
}

/* shirts section */
.card_shirts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.shirt_item {
    width: 90px;
    height: 90px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px -5px rgba(101, 151, 57, 0.2);
    transition: all 0.3s ease;
}

.bucket_card:hover .shirt_item {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 12px 25px -5px rgba(101, 151, 57, 0.3);
}

.shirt_img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.vs_badge {
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-size: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--primary);
}

/* title */
.card_title1 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: var(--dark);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 10px;
}

/* details */
.card_details {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 15px;
}

.detail_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.detail_item:last-child {
    margin-bottom: 0;
}

.detail_icon {
    font-size: 16px;
}

.detail_text {
    color: var(--dark);
    font-weight: 500;
}

/* confirmed badge */
.confirmed_badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 40px;
    width: fit-content;
    margin-bottom: 20px;
}

/* footer */
.card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--primary-light);
    padding-top: 20px;
    margin-top: auto;
}

.price_box {
    display: flex;
    flex-direction: column;
}

.price_label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price_value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.card_btn1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-light);
}

.bucket_card:hover .card_btn {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    gap: 12px;
    box-shadow: 0 10px 20px -8px var(--primary);
}

/* features (hidden by default) */
.card_features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 32px 32px 32px 32px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-light);
    z-index: 5;
}

.bucket_card:hover .card_features {
    transform: translateY(0);
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--dark);
    font-weight: 500;
}

.feature_item:last-child {
    margin-bottom: 0;
}

.feature_item svg {
    flex-shrink: 0;
}

/* ===== VIEW ALL BUTTON ===== */
.bucket_view_all {
    text-align: center;
    margin-top: 30px;
}

.view_all_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 60px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-light);
}

.view_all_link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    gap: 15px;
    box-shadow: 0 10px 25px -8px var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .bucket_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .bucket_title {
        font-size: 44px;
    }
}

@media (max-width: 700px) {
    .bucket_events_section {
        padding: 60px 0;
    }
    
    .bucket_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .bucket_title {
        font-size: 38px;
    }
    
    .bucket_desc {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .section_divider {
        margin: 20px 0 35px;
    }
    
    .bucket_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card_number {
        font-size: 42px;
    }
    
    .shirt_item {
        width: 80px;
        height: 80px;
    }
    
    .shirt_img {
        width: 50px;
    }
    
    .price_value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .bucket_title {
        font-size: 32px;
    }
    
    .bucket_desc {
        font-size: 14px;
    }
    
    .card_shirts {
        gap: 15px;
    }
    
    .shirt_item {
        width: 70px;
        height: 70px;
    }
    
    .shirt_img {
        width: 45px;
    }
    
    .vs_badge {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .card_title {
        font-size: 20px;
    }
    
    .price_value {
        font-size: 22px;
    }
    
    .card_btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .view_all_link {
        font-size: 15px;
        padding: 10px 25px;
    }
}

/* animation for features on hover */
@media (hover: hover) {
    .bucket_card:hover .card_features {
        transform: translateY(0);
    }
}

/* touch devices */
@media (hover: none) {
    .card_features {
        display: none;
    }
}

/* ========================================
   ELEGANT SUBCATEGORY PAGE STYLES
   Simple & Elegant Design
   ======================================== */

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HERO SECTION - Elegant Design
   ======================================== */
.elegant-subcategory-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #659739 0%, #18451f 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    margin-bottom: 24px;
}

.elegant-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.elegant-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.elegant-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.elegant-breadcrumb li a:hover {
    color: #ffffff;
    transform: translateX(-2px);
}

.elegant-breadcrumb li i {
    font-size: 12px;
}

.elegant-breadcrumb li span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.elegant-breadcrumb li i.fa-chevron-right {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

/* Hero Title */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 30px 0;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

/* Hero Decoration */
.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ========================================
   CONTENT SECTION - Elegant Design
   ======================================== */
.elegant-content-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 25px 50px rgba(101, 151, 57, 0.1);
    border-color: #e2f0d4;
}

/* Content Typography */
.content-card h1,
.content-card h2,
.content-card h3,
.content-card h4,
.content-card h5,
.content-card h6 {
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.content-card h1 {
    font-size: 36px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.content-card h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #659739, #18451f);
}

.content-card h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.content-card h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.content-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.content-card a {
    color: #659739;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-card a:hover {
    color: #18451f;
    border-bottom-color: #18451f;
}

/* Lists */
.content-card ul,
.content-card ol {
    margin: 20px 0;
    padding-left: 24px;
}

.content-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

.content-card ul li::marker {
    color: #659739;
}

/* Blockquote */
.content-card blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #e2f0d4;
    border-left: 4px solid #659739;
    border-radius: 12px;
    font-style: italic;
    color: #334155;
}

.content-card blockquote p {
    margin-bottom: 0;
}

/* Images */
.content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Tables */
.content-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-card th,
.content-card td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.content-card th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

/* Buttons */
.content-card .wp-block-button__link,
.content-card .btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #659739, #18451f);
    color: #ffffff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.content-card .wp-block-button__link:hover,
.content-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(101, 151, 57, 0.3);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .content-card {
        padding: 40px;
    }
    
    .content-card h1 {
        font-size: 32px;
    }
    
    .content-card h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .elegant-subcategory-hero {
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .elegant-breadcrumb li a,
    .elegant-breadcrumb li span {
        font-size: 12px;
    }
    
    .elegant-content-section {
        padding: 50px 0;
    }
    
    .content-card {
        padding: 30px 24px;
    }
    
    .content-card h1 {
        font-size: 28px;
    }
    
    .content-card h2 {
        font-size: 24px;
        margin-top: 32px;
    }
    
    .content-card h3 {
        font-size: 20px;
    }
    
    .content-card p,
    .content-card li {
        font-size: 15px;
    }
    
    .content-card blockquote {
        padding: 16px 20px;
    }
    
    .decoration-line {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .content-card {
        padding: 24px 20px;
    }
    
    .content-card h1 {
        font-size: 24px;
    }
    
    .content-card h2 {
        font-size: 20px;
    }
    
    .content-card h3 {
        font-size: 18px;
    }
    
    .content-card p,
    .content-card li {
        font-size: 14px;
    }
    
    .elegant-breadcrumb {
        gap: 8px;
    }
    
    .elegant-breadcrumb li {
        gap: 8px;
    }
    
    .decoration-line {
        width: 20px;
    }
    
    .decoration-dot {
        width: 6px;
        height: 6px;
    }
}

/* ========================================
   CONTACT PAGE COMPLETE STYLES
   Hero Section + Contact Form
   ======================================== */

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.contact-hero-section {
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(135deg, #659739 0%, #18451f 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    margin-bottom: 30px;
}

.elegant-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.elegant-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.elegant-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.elegant-breadcrumb li a:hover {
    color: #ffffff;
    transform: translateX(-2px);
}

.elegant-breadcrumb li i {
    font-size: 12px;
}

.elegant-breadcrumb li span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.elegant-breadcrumb li i.fa-chevron-right {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

/* Hero Title */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Decoration */
.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.premium-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

/* Contact Info Column */
.contact-info-col {
    align-self: start;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(101, 151, 57, 0.1);
    border-color: #e2f0d4;
}

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

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e2f0d4, #e2f0d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon i {
    font-size: 24px;
    color: #659739;
}

.info-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.info-description {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e2f0d4, #e2f0d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 20px;
    color: #659739;
}

.detail-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.detail-content a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: #659739;
}

/* Contact Form Column */
.contact-form-col {
    align-self: start;
}

.contact-form-card {
    background: linear-gradient(135deg, #e2f0d4, #ffffff);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2f0d4;
}

.contact-form-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #0f172a;
    text-align: center;
    letter-spacing: -0.02em;
}

.contact-form-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    text-align: center;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form 7 Styling - FIXED ICON POSITION */
.contact-form-card .wpcf7 {
    margin-top: 20px;
}

.contact-form-card .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-card .wpcf7-form p {
    margin: 0;
    position: relative;
}

.contact-form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    position: relative;
}

/* Input Wrapper for Icons */
.contact-form-card .wpcf7-form-control-wrap input,
.contact-form-card .wpcf7-form-control-wrap textarea,
.contact-form-card .wpcf7-form-control-wrap select {
    width: 100%;
    padding: 14px 18px 14px 48px;
    font-size: 14px;
    font-family: inherit;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #0f172a;
    transition: all 0.3s ease;
}

/* Add icons to input fields */
.contact-form-card .wpcf7-form-control-wrap input[type="text"] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23659739"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 18px;
}

.contact-form-card .wpcf7-form-control-wrap input[type="email"] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23659739"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 18px;
}

.contact-form-card .wpcf7-form-control-wrap input[type="tel"] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23659739"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 18px;
}

.contact-form-card .wpcf7-form-control-wrap textarea {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23659739"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>');
    background-repeat: no-repeat;
    background-position: 16px 16px;
    background-size: 18px;
    padding-top: 16px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    outline: none;
    border-color: #659739;
    box-shadow: 0 0 0 3px rgba(101, 151, 57, 0.1);
}

.contact-form-card textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #94a3b8;
}

/* Submit Button */
.contact-form-card .wpcf7-submit {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #659739, #18451f);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form-card .wpcf7-submit:hover {
    background: linear-gradient(135deg, #7eb34d, #659739);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(101, 151, 57, 0.3);
}

/* Response Messages */
.contact-form-card .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card {
        padding: 35px;
    }
    
    .contact-form-card {
        padding: 40px;
    }
    
    .contact-form-card h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .elegant-breadcrumb li a,
    .elegant-breadcrumb li span {
        font-size: 12px;
    }
    
    .contact-info-card {
        padding: 30px;
    }
    
    .info-header h2 {
        font-size: 24px;
    }
    
    .contact-form-card {
        padding: 30px 24px;
    }
    
    .contact-form-card h2 {
        font-size: 24px;
    }
    
    .contact-form-card > p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .detail-icon {
        width: 42px;
        height: 42px;
    }
    
    .detail-icon i {
        font-size: 18px;
    }
    
    .decoration-line {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .contact-info-card {
        padding: 24px;
    }
    
    .info-header {
        gap: 12px;
    }
    
    .header-icon {
        width: 42px;
        height: 42px;
    }
    
    .header-icon i {
        font-size: 20px;
    }
    
    .info-header h2 {
        font-size: 22px;
    }
    
    .info-description {
        font-size: 14px;
    }
    
    .contact-form-card {
        padding: 24px 20px;
    }
    
    .contact-form-card h2 {
        font-size: 22px;
    }
    
    .contact-form-card .wpcf7-form-control-wrap input,
    .contact-form-card .wpcf7-form-control-wrap textarea {
        padding: 12px 16px 12px 42px;
        font-size: 13px;
    }
    
    .contact-form-card .wpcf7-submit {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .decoration-line {
        width: 20px;
    }
    
    .decoration-dot {
        width: 6px;
        height: 6px;
    }
}

/* ========== CHAMPIONS LEAGUE TOP BANNER ========== */
#cl-top-banner {
    background: linear-gradient(135deg, #0A0F2A 0%, #0C1A2F 100%);
    border-bottom: 3px solid #659739;
    position: relative;
    width: 100%;
    z-index: 9999;
    display: block;
    margin: 0;
    padding: 0;
}

.cl-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cl-banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    flex-wrap: wrap;
}

.cl-banner-icon {
    font-size: 48px;
    animation: rotateTrophy 3s infinite ease-in-out;
    filter: drop-shadow(0 0 15px rgba(101, 151, 57, 0.6));
    background: rgba(101, 151, 57, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.cl-banner-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cl-banner-title {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #659739, #7eb34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cl-banner-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.cl-banner-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.cl-banner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 15px;
    background: rgba(101, 151, 57, 0.12);
    border-radius: 12px;
    border-left: 3px solid #659739;
    transition: all 0.3s ease;
}

.cl-banner-stat:hover {
    background: rgba(101, 151, 57, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 16px;
    font-weight: 800;
    color: #7eb34d;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
    font-weight: 500;
}

.cl-banner-btn {
    background: linear-gradient(135deg, #659739, #18451f);
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cl-banner-btn:hover {
    background: linear-gradient(135deg, #7eb34d, #659739);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(101, 151, 57, 0.4);
}

.cl-banner-close {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
}

.cl-banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cl-banner-close svg {
    stroke: #7eb34d;
    width: 18px;
    height: 18px;
}

/* Animations */
@keyframes rotateTrophy {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-12deg);
    }
    75% {
        transform: rotate(12deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .cl-banner-container {
        padding: 12px 20px;
    }
    
    .cl-banner-title {
        font-size: 20px;
    }
    
    .cl-banner-icon {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .cl-banner-container {
        flex-direction: column;
        padding: 15px;
    }
    
    .cl-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
    }
    
    .cl-banner-icon {
        font-size: 36px;
    }
    
    .cl-banner-title {
        font-size: 18px;
    }
    
    .cl-banner-subtitle {
        font-size: 11px;
    }
    
    .cl-banner-info {
        margin-left: 0;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .cl-banner-stat {
        padding: 5px 12px;
    }
    
    .stat-number {
        font-size: 13px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .cl-banner-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }
    
    .cl-banner-btn {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
}

/* ========== SPECIAL MATCH HIGHLIGHT STYLES ========== */
/* Manchester United vs Liverpool - Green Theme */

/* Special Match Card */
.special-match-card {
    border: 2px solid #659739 !important;
    box-shadow: 0 8px 30px rgba(101, 151, 57, 0.3) !important;
    position: relative;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.special-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #659739, #7eb34d, #659739);
    box-shadow: 0 0 15px rgba(101, 151, 57, 0.8);
    z-index: 2;
}

.special-match-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(101, 151, 57, 0.4) !important;
}

/* Special Match Label */
.special-match-label {
    text-align: center;
    margin: 16px 20px 0;
    padding: 8px 0;
    background: rgba(101, 151, 57, 0.2);
    border-radius: 30px;
    border: 1px solid #659739;
    animation: pulse 1.5s infinite;
}

.special-match-label span {
    color: #7eb34d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Special VS Badge */
.special-vs-badge {
    background: linear-gradient(135deg, #659739, #18451f) !important;
    box-shadow: 0 0 20px rgba(101, 151, 57, 0.8) !important;
    animation: pulse 1.5s infinite;
}

/* Special Button */
.special-btn-primary {
    background: linear-gradient(135deg, #659739, #18451f) !important;
    box-shadow: 0 4px 15px rgba(101, 151, 57, 0.5) !important;
    animation: pulse 1.5s infinite;
}

.special-btn-primary:hover {
    background: linear-gradient(135deg, #7eb34d, #659739) !important;
    transform: translateY(-2px);
}

/* Special Collection Card Badge */
.special-badge-card {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #659739, #18451f);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 3;
    animation: pulse 1.5s infinite;
}

/* Special Collection Card Button */
.special-btn-outline {
    border: 2px solid #659739 !important;
    color: #7eb34d !important;
    background: rgba(101, 151, 57, 0.1) !important;
}

.special-btn-outline:hover {
    background: linear-gradient(135deg, #659739, #18451f) !important;
    color: #FFFFFF !important;
}

/* Pulse Animation for Special Match */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(101, 151, 57, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(101, 151, 57, 0);
    }
}

/* ========== REGULAR STYLES (For normal cards) ========== */

/* Match Cards - Default */
.match-card {
    border: 1px solid rgba(101, 151, 57, 0.2);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #0A0F2A 100%);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    height: auto;
    min-height: auto;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(101, 151, 57, 0.15);
    border-color: rgba(101, 151, 57, 0.4);
}

/* Green Top Border for Regular Cards */
.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #659739, #7eb34d, #659739);
    z-index: 2;
}

/* Match Teams Section */
.match-card .match-teams {
    padding: 20px 20px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: transparent;
    border-bottom: 1px solid rgba(101, 151, 57, 0.15);
}

/* Team Shirts */
.team-shirt {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* VS Badge */
.vs-badge {
    background: linear-gradient(135deg, #659739, #18451f);
    color: white;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(101, 151, 57, 0.4);
}

/* Match Title */
.match-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    margin: 16px 20px 12px;
    text-align: center;
}

/* Match Details */
.match-details {
    padding: 0 20px;
    margin: 10px 0;
    background: transparent;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9) !important;
}

.detail-row svg {
    flex-shrink: 0;
    stroke: #7eb34d;
    width: 16px;
    height: 16px;
}

.detail-row span {
    color: #FFFFFF !important;
    font-size: 13px;
    font-weight: 500;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(101, 151, 57, 0.2);
    background: rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}

/* Price Section */
.price {
    display: flex;
    flex-direction: column;
}

.price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-top: 4px;
}

.currency {
    color: #7eb34d;
    font-size: 16px;
    font-weight: 600;
}

.amount {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

/* Button - Green */
.btn-primary-small {
    background: linear-gradient(135deg, #659739, #18451f);
    color: #FFFFFF !important;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(101, 151, 57, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-small:hover {
    background: linear-gradient(135deg, #7eb34d, #659739);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(101, 151, 57, 0.4);
}

.btn-primary-small svg {
    stroke: #FFFFFF;
    width: 14px;
    height: 14px;
}

/* Collection Cards */
.collection-card {
    border: 1px solid rgba(101, 151, 57, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #0A0F2A 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    height: auto;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(101, 151, 57, 0.15);
    border-color: rgba(101, 151, 57, 0.4);
}

/* Green Top Border for Collection Cards */
.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #659739, #7eb34d, #659739);
    z-index: 2;
}

/* Collection Card Image */
.collection-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.collection-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 15, 42, 0.9), transparent);
}

/* Collection Card Content */
.collection-card .card-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.collection-card .card-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Collection Card Button */
.btn-outline {
    border: 1.5px solid #659739;
    color: #7eb34d !important;
    background: transparent;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #659739, #18451f);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.btn-outline svg {
    stroke: #7eb34d;
}

.btn-outline:hover svg {
    stroke: #FFFFFF;
}

/* Sold Out Badge */
.sold-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(220, 38, 38, 0.95);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 4;
    backdrop-filter: blur(5px);
}

.btn-sold {
    background: #4b5563;
    color: #9ca3af;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: not-allowed;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .match-card .match-teams {
        gap: 15px;
        padding: 15px 15px 10px;
    }
    
    .team-shirt {
        width: 55px;
        height: 55px;
    }
    
    .vs-badge {
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .match-title {
        font-size: 16px;
        margin: 12px 15px 10px;
    }
    
    .match-details {
        padding: 0 15px;
    }
    
    .detail-row {
        padding: 6px 10px;
        margin-bottom: 8px;
    }
    
    .detail-row span {
        font-size: 12px;
    }
    
    .card-footer {
        padding: 12px 15px;
    }
    
    .amount {
        font-size: 22px;
    }
    
    .btn-primary-small {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .collection-card .card-image {
        height: 160px;
    }
    
    .collection-card .card-content {
        padding: 15px;
    }
    
    .collection-card .card-title {
        font-size: 16px;
    }
    
    .btn-outline {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .special-match-card {
        transform: scale(1.01);
    }
    
    .special-match-card:hover {
        transform: scale(1.02);
    }
}