body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* HEADER */
header {
    background: black;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 80vh;
    background: url("../images/fon.jpg") center/cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.hero h1 {
    font-size: 48px;
}

.btn {
    background: white;
    color: black;
    padding: 10px 20px;
    width: fit-content;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}

/* CATEGORY BACKGROUND */
.category {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("../images/fon.jpg") center/cover fixed;
}
#cart {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

#total {
    text-align: center;
    margin-top: 20px;
}  
.instagram {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}

.card button {
    background: black;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.card button:hover {
    background: #333;
    }
    .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
    transition: 0.3s;
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    }

    .order-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 20px auto;
}

.order-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.order-form button {
    padding: 10px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.order-form button:hover {
    background: #333;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }
}
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(1, 1fr);
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        padding: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .order-form {
        width: 90%;
    }
}
header {
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

.logo span {
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 20px;
}
.catalog {
    display: grid;
    grid-template-columns: repeat(5, 170px);
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
}

.card {
    width: 170px;
    height: 330px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 35px 10px;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.card h3,
.card a {
    position: relative;
    z-index: 2;
}

.card h3 {
    color: white;
    font-size: 28px;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.card button {
    background: white;
    color: black;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.card button:hover {
    background: #ddd;
}
.tshirts {
    background-image: url("../images/tshirts.jpeg");
}

.jeans {
    background-image: url("../images/jeans.webp");
}


.hoodies {
    background-image: url("../images/hodies.webp");
}

.shorts {
    background-image: url("../images/shorts.jpeg");
}

.tracksuits {
    background-image: url("../images/tracksuits.jpeg");
}

.crocs {
    background-image: url("../images/crocs.jpg");
}

.shirts {
    background-image: url("../images/shirts.jpg");
}

.caps {
    background-image: url("../images/caps.jpg");
}

.qsc {
    background-image: url("../images/qsc.jpg");
    }

    .windbreakers {
    background-image: url("../images/windbreakers.jpg");
    }
    body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url("../images/catalog-bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    }
    .catalog-title {
    text-align: center;
    margin: 50px 0;
}

.catalog-title h1 {
    font-size: 70px;
    margin: 0;
    text-transform: uppercase;
}

.catalog-title p {
    font-size: 24px;
    color: #d0d0d0;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.card {
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.catalog-title::before {
    content: "QSC CASUAL";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: bold;
    opacity: 0.05;
    z-index: -1;
    white-space: nowrap;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    color: white;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}
.hero {
    height: 90vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("images/fon.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 80px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 28px;
    margin-bottom: 30px;
}

.hero-content button {
    background: white;
    color: black;
    border: none;
    padding: 18px 40px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.hero-content button:hover {
    transform: scale(1.05);
}

.big-text {
    position: absolute;
    left: 30px;
    bottom: 20px;
    font-size: 180px;
    font-weight: 900;
    color: white;
    opacity: 0.03;
    pointer-events: none;
}
.features {
    background: #111;
    color: white;
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 40px;
    text-align: center;
}
.popular {
    background: #000;
    color: white;
    padding: 80px 50px;
}

.popular h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    width: 280px;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.product-card h3,
.product-card p {
    padding: 0 15px;
}

.product-card button {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 12px;
    border: none;
    background: white;
    font-weight: bold;
    border-radius: 8px;
}
.tracksuits-title {
    font-size: 24px;
    text-align: center;
    line-height: 1.1;
}

.tracksuits-title span {
    display: block;
}
.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.instagram-btn img {
    width: 35px;
    height: 35px;
    transition: 0.3s;
}

.instagram-btn img:hover {
    transform: scale(1.15);
}
nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.instagram-btn {
    display: flex;
    align-items: center;
}

.instagram-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}.footer-link {
    display: block;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.footer-link:hover {
    color: #cfcfcf;
    text-decoration: underline;
}
.hero-page {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("images/fon.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 80px;
}

.page-content {
    max-width: 900px;
}

.page-content h1 {
    font-size: 60px;
    margin-bottom: 30px;
}

.page-content p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}
.product-page{
    display:flex;
    gap:50px;
    padding:50px;
    color:white;
}

.product-image img{
    width:450px;
    border-radius:15px;
}

.product-info{
    max-width:500px;
}

.sizes{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.sizes span{
    background:#fff;
    color:#000;
    padding:10px 15px;
    border-radius:8px;
    font-weight:bold;
}

.price{
    font-size:32px;
    font-weight:bold;
    margin:20px 0;
}
.instagram-icon{
    width:30px;
    height:30px;
    margin-left:15px;
    vertical-align:middle;
    transition:0.3s;
}

.instagram-icon:hover{
    transform:scale(1.1);
}
.instagram-link img{
    width: 35px;
    height: 35px;
    object-fit: contain;
}.product-page{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    background:url("../images/fon.jpg") center/cover no-repeat;
    color:white;
    padding:50px;
}

.product-page img{
    width:350px;
    border-radius:15px;
}

.product-info{
    max-width:400px;
}

.product-info h2{
    font-size:36px;
}

.product-info p{
    font-size:20px;
}

.product-info button{
    padding:12px 25px;
    background:white;
    border:none;
    cursor:pointer;
    font-size:18px;
}
.main-image {
    width: 400px;
    border-radius: 10px;
}

.thumbnails {
    margin-top: 10px;
}

.thumbnails img {
    width: 80px;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid #ddd;
}

.thumbnails img:hover {
    border: 2px solid black;
}
.size-buttons button {
    margin: 5px;
    padding: 10px 18px;
    border: 2px solid white;
    background: white;
    cursor: pointer;
    font-size: 16px;
}

.size-buttons button:hover {
    background: black;
    color: white;
}

.active-size {
    background: black !important;
    color: white !important;
}
.title {
    text-align: center;
    color: white;
    margin-top: 30px;
}

#cart {
    text-align: center;
    margin: 30px auto;
}

#total {
    text-align: center;
    color: white;
}

.order-section {
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
}

.order-section h2 {
    color: white;
    margin-bottom: 20px;
}

.buy-btn {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.price {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 10px 0;
}

.delete-btn {
    width: 80%;
    margin: 10px auto 0;
    display: block;

    background: #d32f2f;
    color: white;

    border: none;
    border-radius: 8px;

    padding: 10px;
    cursor: pointer;
    font-weight: bold;
}

.delete-btn:hover {
    background: #b71c1c;
}
.card {
    text-align: center;
}
.cart-size {
    color: white;
    font-size: 16px;
    margin: 5px 0;
}

.price {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.delete-btn {
    display: block !important;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    background: red;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}.cart-products .card {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 20px;
    overflow: visible !important;
}

.cart-products .card img {
    height: 220px;
    object-fit: cover;
}

.cart-products .card h3 {
    font-size: 24px;
    margin: 10px 0;
}

.cart-size,
.price {
    display: block !important;
    color: white;
    font-size: 16px;
    margin: 6px 0;
}

.delete-btn {
    display: block !important;
    width: 80%;
    margin: 12px auto 0;
    padding: 10px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    z-index: 10;
}

.delete-btn:hover {
    background: #b71c1c;
}
.cart-img{
    width:160px;
    height:160px;
    object-fit:contain;
}

.cart-size{
    color:white;
    font-size:16px;
}

.cart-price{
    color:white;
    font-size:20px;
    font-weight:bold;
}

.delete-btn{
    width:80%;
    margin-top:10px;
    background:red;
    color:white;
    border:none;
    padding:10px;
    border-radius:8px;
    cursor:pointer;
}
.cart-card {
    width: 260px;
    min-height: 500px;
    background: #d3d3d3;
    border-radius: 20px;
    padding: 20px;
}

.cart-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
}

.cart-card h3 {
    margin: 15px 0;
    color: white;
    font-size: 20px;
}

.cart-size {
    font-size: 18px;
    margin: 10px 0;
}

.cart-price {
    font-size: 24px;
    font-weight: bold;
    color: #111;
    margin: 10px 0 20px;
}

.delete-btn {
    width: 100%;
    padding: 12px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.delete-btn:hover {
    background: #b71c1c;
}
.cart-size {
    display: inline-block;
    background: #111;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin: 10px 0;
}
/* PRODUCT PAGE */

.product-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
    padding: 60px 8%;
    min-height: 80vh;
    color: white;
}

.gallery {
    width: 45%;
    max-width: 520px;
}

.main-image {
    width: 100%;
    max-width: 480px;
    height: 480px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 20px;
    display: block;
    margin: 0 auto;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.thumbnails img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 15px;
    padding: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumbnails img:hover {
    border-color: #d6aa54;
    transform: scale(1.05);
}

.product-info {
    width: 45%;
    max-width: 520px;
    text-align: left;
    padding-top: 30px;
}

.product-info h2 {
    font-size: 42px;
    margin-bottom: 35px;
    line-height: 1.2;
}

.product-info h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

#productDescription {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-info p {
    font-size: 22px;
}

.size-buttons {
    display: flex;
    gap: 35px;
    margin: 25px 0 35px;
}

.size-buttons button {
    width: 85px;
    height: 60px;
    background: white;
    color: black;
    border: none;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.size-buttons button:hover {
    background: #d6aa54;
    color: black;
}

.active-size {
    background: #d6aa54 !important;
    color: black !important;
}

.product-info > button {
    display: inline-block;
    margin-top: 20px;
    margin-right: 20px;
    padding: 18px 35px;
    font-size: 22px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.product-info > button:first-of-type {
    background: #d6aa54;
    color: black;
}

.product-info > button:last-of-type {
    background: white;
    color: black;
}

.product-info > button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
    .product-page {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .gallery,
    .product-info {
        width: 100%;
        max-width: 100%;
    }

    .main-image {
        max-width: 100%;
        height: 380px;
    }

    .thumbnails img {
        width: 95px;
        height: 95px;
    }

    .product-info h2 {
        font-size: 32px;
    }

    #productDescription,
    .product-info p {
        font-size: 18px;
    }

    .size-buttons {
        gap: 15px;
        flex-wrap: wrap;
    }

    .product-info > button {
        width: 100%;
        margin-right: 0;
    }
}
/* WISHLIST / FAVORITES PAGE */

.favorites-page {
    padding: 40px 8%;
    color: white;
}

.favorites-page h2 {
    font-size: 34px;
    margin-bottom: 30px;
}

#wishlistList {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#wishlistList .cart-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 18px;
    max-width: 800px;
}

#wishlistList .cart-item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    background: white;
    border-radius: 14px;
    padding: 10px;
}

#wishlistList .cart-item h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

#wishlistList .cart-item p {
    font-size: 18px;
    margin: 6px 0;
}

#wishlistList .cart-item button {
    margin-top: 10px;
    padding: 10px 22px;
    border: none;
    background: #d6aa54;
    color: black;
    cursor: pointer;
    font-size: 16px;
}
/* ===== FIX FOOTER ===== */

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Основний контент */
.hero,
.hero-page,
.products,
.product-page,
.cart-page,
.favorites-page,
main {
    flex: 1;
}

/* Сторінка обраного */
.favorites-page {
    min-height: 500px;
    padding: 40px 8%;
    color: white;
}

.favorites-page h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

/* Список товарів */
#wishlistList {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Картка товару */
#wishlistList .cart-item {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 900px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
}

/* Фото товару */
#wishlistList .cart-item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    background: white;
    border-radius: 15px;
    padding: 10px;
}

/* Інформація */
#wishlistList .cart-item h3 {
    margin: 0 0 10px;
    font-size: 26px;
    color: white;
}

#wishlistList .cart-item p {
    margin: 8px 0;
    font-size: 18px;
    color: white;
}

/* Кнопка видалення */
#wishlistList .cart-item button {
    margin-top: 10px;
    background: #d6aa54;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

#wishlistList .cart-item button:hover {
    opacity: 0.85;
}

/* Footer завжди внизу */
footer {
    margin-top: auto;
    background: #000;
    color: white;
    text-align: left;
    padding: 20px;
}
.product-card{
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}
/* ADMIN PAGE */

.admin-page {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: white;
}

.admin-box {
    width: 420px;
    background: rgba(0, 0, 0, 0.75);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(214, 170, 84, 0.25);
    border: 1px solid rgba(214, 170, 84, 0.4);
}

.admin-box h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.admin-box input,
.admin-box textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.admin-box button {
    width: 100%;
    padding: 14px;
    background: #d6aa54;
    color: black;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.admin-box button:hover {
    opacity: 0.9;
}
/* ADMIN PANEL BEAUTIFUL */

.admin-page {
    padding: 40px 8%;
    color: white;
    min-height: 80vh;
}

.admin-panel {
    width: 100%;
}

.admin-panel h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

/* Статистика в один рядок */
.admin-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    width: 220px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid #d6aa54;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 20px rgba(214, 170, 84, 0.2);
}

.stat-card h3 {
    font-size: 42px;
    color: #d6aa54;
    margin: 0;
}

.stat-card p {
    font-size: 20px;
    margin: 10px 0 0;
}

/* Таблички */
.admin-box {
    width: 100%;
    max-width: 1100px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid #d6aa54;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(214, 170, 84, 0.18);
}

.admin-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

/* Форма додавання товару */
.admin-box input,
.admin-box textarea,
.admin-box select {
    width: 100%;
    padding: 15px;
    margin-bottom: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.admin-box textarea {
    height: 120px;
}

.admin-box button,
.logout-btn {
    background: #d6aa54;
    color: black;
    border: none;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

/* Додані товари */
.admin-product,
.admin-order {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 18px;
    border-left: 4px solid #d6aa54;
}

.admin-product {
    display: flex;
    gap: 20px;
    align-items: center;
}

.admin-product img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 8px;
}

.admin-product h4,
.admin-order h4 {
    font-size: 22px;
    margin: 0 0 10px;
}

.admin-product p,
.admin-order p,
.admin-order li {
    font-size: 17px;
    line-height: 1.5;
}

.admin-order ul {
    padding-left: 25px;
}

/* Mobile */
@media (max-width: 800px) {
    .admin-stats {
        flex-direction: column;
    }

    .stat-card {
        width: 100%;
    }

    .admin-product {
        flex-direction: column;
        align-items: flex-start;
    }
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: white;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px;
    text-align: center;
    font-size: 15px;
    vertical-align: middle;
}

.admin-table th {
    background: rgba(214,170,84,0.25);
}

.admin-table select {
    padding: 8px;
    border-radius: 8px;
}

.admin-table button {
    background: #d6aa54;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

.admin-table-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 5px;
}
.favorite-buttons{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.buy-btn{
    background:#d4a94f;
    color:black;
    border:none;
    padding:12px 25px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
}

.buy-btn:hover{
    background:#e4bb66;
}

.delete-btn{
    background:#dc3545;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
}

.delete-btn:hover{
    background:#b52b38;
    .wishlist-buttons 
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.wishlist-buy,
.wishlist-delete {
    width: auto !important;
    min-width: 160px;
    padding: 12px 25px !important;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.wishlist-buy {
    background: #d6aa54 !important;
    color: black !important;
}

.wishlist-delete {
    background: transparent !important;
    color: #d6aa54 !important;
    border: 1px solid #d6aa54 !important;
}
.wishlist-buttons {
    display: flex;
    gap: 18px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.wishlist-buy,
.wishlist-delete {
    width: auto !important;
    min-width: 150px;
    padding: 12px 25px !important;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.wishlist-buy {
    background: #d6aa54 !important;
    color: black !important;
    border: none !important;
}

.wishlist-delete {
    background: transparent !important;
    color: #d6aa54 !important;
    border: 1px solid #d6aa54 !important;
}

.wishlist-buy:hover,
.wishlist-delete:hover {
    transform: scale(1.04);
}

.empty-wishlist {
    color: white;
    font-size: 22px;
}
.size-buttons button {
    min-width: 85px;
    width: auto;
    height: 60px;
    padding: 0 25px;
    background: white;
    color: black;
    border: none;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}
.style-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
}

.style-modal-content {
    width: 850px;
    max-width: 95%;
    background: #111;
    color: white;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid #d6aa54;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    cursor: pointer;
}

.style-products {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.style-card {
    width: 220px;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.style-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: white;
}

.style-card h3,
.style-card p {
    padding: 10px;
}

.continue-btn {
    margin: 30px auto 0;
    display: block;
    padding: 14px 30px;
    background: #d6aa54;
    border: none;
    border-radius: 10px;
    font-weight: bold;
}
.style-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease, background 0.35s ease;
}

.style-modal.show {
    display: flex;
    opacity: 1;
    background: rgba(0, 0, 0, 0.75);
}

.style-modal-content {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.style-modal.show .style-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.style-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease, background 0.35s ease;
}

.style-modal.show {
    display: flex;
    opacity: 1;
    background: rgba(0, 0, 0, 0.75);
}

.style-modal-content {
    width: 850px;
    max-width: 95%;
    background: #111;
    color: white;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid #d6aa54;
    position: relative;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.style-modal.show .style-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}