/* ==========================================================
   TEAMSPORT STURANY
   SHOP.CSS
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#fafafa;

    color:#1f2937;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================
   VARIABLES
========================== */

:root{

    --primary:#2f5b50;

    --primary-dark:#23453d;

    --light:#f7f8fa;

    --dark:#1d1d1d;

    --text:#6b7280;

    --border:#e5e7eb;

    --shadow:0 20px 50px rgba(0,0,0,.08);

}

/* ==========================
   CONTAINER
========================== */

.shop-container{

    width:min(1280px,92%);

    margin:auto;

}

/* ==========================
   HEADER
========================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:.35s;

}

.header .shop-container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}


  .logo img{

    height:160px;

    width:auto;

}


.nav-links{

    display:flex;

    gap:40px;

    list-style:none;

}

.nav-links a{

    position:relative;

    font-weight:600;

    color:var(--dark);

    padding:8px 0;

    transition:.35s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    background:var(--primary);

    border-radius:999px;

    transition:.35s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;

}

.nav-links a.active{

    color:var(--primary);

}


.header-button{

    background:var(--primary);

    color:white;

    padding:14px 26px;

    border-radius:999px;

    transition:.3s;

}

.header-button:hover{

    background:var(--primary-dark);

}

/* ==========================================================
   SHOP HEADER
========================================================== */

.shop-header{

    padding: 110px 0 40px;

    text-align:center;

}

.shop-header h1{

    max-width:900px;

    margin:0 auto 30px;

    font-size:3rem;

    line-height:1.15;

    text-align:center;

}

.shop-header p{

    max-width:760px;

    margin:auto;

    line-height:1.8;

    color:var(--text);

}

.shop-info{

    margin-top:35px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    color:var(--primary);

    font-weight:600;

}

.shop-info span{

    opacity:.4;

}

/* ==========================================================
   SHOP TABS
========================================================== */


.shop-tabs .shop-container{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}


.shop-tab:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.shop-tab.active{

    background:var(--primary);

    color:white;

}



/* ==========================================================
   KATEGORIEN
========================================================== */

.shop-categories{

    padding:20px 0 70px;

}

.category-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.category-btn{

    padding:16px 34px;

    border:none;

    border-radius:999px;

    background:white;

    border:1px solid var(--border);

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.category-btn.active{

    background:var(--primary);

    color:white;

}

.category-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/* ==========================================================
   ANIMATION
========================================================== */

@keyframes floatShirt{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ==========================================================
   PRODUKTE
========================================================== */

.products{

    padding:10px 0 80px;

}

.section-title{

    text-align:center;

    max-width:720px;

    margin: 20px auto;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-title h2{

    font-size:clamp(2rem,4vw,3rem);

    margin-bottom:20px;

}

.section-title p{

    color:var(--text);

    line-height:1.8;

}

/* GRID */

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* CARD */

.product-card{

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

    background:white;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/* BADGE */

.section-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 22px;

    border-radius:999px;

    background:#eef7f3;

    color:var(--primary);

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:28px;

}

.product-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:var(--primary);

    color:white;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    padding:8px 14px;

    border-radius:999px;

    z-index:5;

}


/* IMAGE */

.product-image{

    height:340px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:1px;

    background:#f8f9fb;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}

/* CONTENT */

.product-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:28px;

}

.product-content h3{

    margin-bottom:8px;

    font-size:1.4rem;

}

.product-content p{

    color:var(--text);

    margin-bottom:20px;

}

/* PREIS */

.product-price{

    font-size:1.6rem;

    font-weight:700;

    color:var(--primary);

    margin-bottom:22px;

}

/* TAGS */

.product-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;

}

.product-tags span{

    background:#eef7f3;

    color:var(--primary);

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

}

/* BUTTON */

.whatsapp-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    margin-top:auto;

    padding:16px 22px;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    font-size:15px;

    transition:all .3s ease;

}

.whatsapp-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}

/* ==========================================================
   GUTSCHEINE
========================================================== */

.voucher-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.voucher-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.voucher-image{

    width:100%;

    height:190px;

    object-fit:cover;

}

.voucher-content{

    padding:25px;

}

.voucher-content h3{

    font-size:26px;

    margin-bottom:12px;

}

.voucher-content{

    padding:25px;

    text-align:left;

}

.voucher-image{

    width:100%;

    height:190px;

    object-fit:contain;

    background:#fff;

    padding:15px;

}

.voucher-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:40px;

}
.whatsapp-btn{

    width:100%;

}

/* ==========================================
   FILTER
========================================== */

.shop-filter{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:20px;
    padding:18px 0 13px;

}

.filter-btn{

    padding:14px 28px;

    border-radius:999px;

    border:1px solid #e5e7eb;

    background:white;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.filter-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.filter-btn.active{

    background:var(--primary);

    color:white;

}

.main-brand{

    background:#eef7f3;

    color:var(--primary);

    font-weight:700;

}

/* ==========================================================
   CTA
========================================================== */

.shop-cta{

    padding:120px 0;

}

.cta-box{

    background:linear-gradient(
        135deg,
        #2f5b50,
        #3b7466
    );

    color:#ffffff;

    border-radius:36px;

    padding:80px;

    text-align:center;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.cta-badge{

    display:inline-block;

    background:rgba(255,255,255,.18);

    color:#ffffff;

    padding:10px 20px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:25px;

}

.cta-box h2{

    font-size:clamp(2.2rem,4vw,3.5rem);

    margin-bottom:25px;

    color:#ffffff;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 45px;

    line-height:1.8;

    font-size:1.1rem;

    color:rgba(255,255,255,.92);

    opacity:1;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons a{

    padding:18px 34px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.btn-primary{

    background:#ffffff;

    color:var(--primary);

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#f3f3f3;

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.45);

    color:#ffffff;

    background:transparent;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.12);

}

/* ==========================================================
   FOOTER
========================================================== */

.footer{

    background:#1f2937;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    margin-bottom:50px;

}

.footer-brand img{

    height:70px;

    margin-bottom:25px;

}

.footer-brand p{

    color:#cbd5e1;

    line-height:1.8;

    max-width:420px;

}

.footer h4{

    margin-bottom:20px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-links a:hover{

    color:white;

}

.footer-contact p{

    color:#cbd5e1;

    margin-bottom:14px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:40px;

    padding-top:25px;

    text-align:center;

    color:#94a3b8;

}

/* ==========================================================
   MARKENBEREICHE
========================================================== */

.brand-section{

    padding:0 0 90px;

}

.brand-header{

    margin-bottom:40px;

}

.brand-header h2{

    font-size:2.2rem;

    margin-bottom:10px;

}

.brand-header p{

    color:var(--text);

}

.more-products{

    margin-top:35px;

    background:#f7f8fa;

    padding:35px;

    border-radius:24px;

    text-align:center;

}

.more-products h3{

    margin-bottom:15px;

}

.more-products p{

    max-width:720px;

    margin:0 auto 25px;

    color:var(--text);

    line-height:1.8;

}

.shop-content{

    display:none;

    animation:fade .35s ease;
    padding:60px 0 90px;

}

.shop-content.active{

    display:block;

}

@keyframes fade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==========================================================
SHOP FILTER
==========================================================*/

.filter-wrapper{

    display:flex;

    align-items:flex-start;

    justify-content:center;

    gap:22px;

    flex-wrap:wrap;

    margin-top:10px;

    margin-bottom:10px;

}


.filter-title{

    background:#eef7f3;

    color:var(--primary);

    padding:10px 18px;

    border-radius:999px;

    font-size:15px;

    font-weight:700;

}

.shop-tabs{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    justify-content:center;

}

.shop-tab{

    padding:14px 24px;

    border-radius:999px;

    border:2px solid var(--primary);

    background:white;

    color:var(--primary);

    cursor:pointer;

    font-weight:700;

    transition:.3s;

}

.shop-tab:hover{

    background:var(--primary);

    color:white;

}

.shop-tab.active{

    background:var(--primary);

    color:white;

}

.featured-brand{

    border:2px solid var(--primary);

}

.more-brands{

    display:flex;

    justify-content:center;

    align-items:center;

}

.brand-list{

    list-style:none;

    margin:20px 0 30px;

    padding:0;

}

.brand-list li{

    padding:6px 0;

    color:var(--text);

}

.products-grid-two{

    grid-template-columns:repeat(2,1fr);

}

.products-grid-three{

    grid-template-columns:repeat(3,1fr);

}

@media(max-width:1100px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

.voucher-grid{

grid-template-columns:repeat(2,1fr);

}

.products-grid-three{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.products-grid,

.products-grid-two,

.products-grid-three,

.voucher-grid{

grid-template-columns:1fr;

}

.shop-header{

padding:120px 0 40px;

}

.shop-header h1{

font-size:2.3rem;

}

.filter-wrapper{

flex-direction:column;

}

.shop-tabs{

justify-content:center;

}

}

@media (max-width:768px){

    section{

padding:80px 0;

}

.header .shop-container{

height:78px;

}

.navbar{

display:none;

}

.navbar.active{

    display:block;

    position:absolute;

    top:78px;

    left:0;

    width:100%;

    background:white;

    border-top:1px solid #e6e8ed;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.navbar.active .nav-links{

    flex-direction:column;

    gap:0;

    padding:20px;

}

.navbar.active .nav-links li{

    width:100%;

}

.navbar.active .nav-links a{

    display:block;

    padding:16px 0;

}

.header-button{

display:none;

}

.menu-toggle{

display:flex;

}

}






