:root {
    /* color */
    --primary-color: #343444; /* used */ 
    --primary-color2: #fff; /* used */ 
    --primary-color3: #eb1bad; /* used */
    --primary-color4: #09090c; /* used */
    --primary-color5: #0b0c10; /* used */
    --primary-color6: #3d042cc4; /* used */
    --primary-color7: #65657a;  /* used */
    --primary-color8: #ffffff8c; /* used */ 
    --primary-color9: #ffffff45; /* used */

    --primary-color10: #e57e7e; /* NOT USED YET */

    --primary-color11: #131318;  /* used */
    --primary-color12: #000;  /* used */

    --primary-color13: #8A208C;  /* NOT USED YET */

    --primary-color14: #ea66d542; /* used */ 
    --primary-color15: #16cbee; /* used */
    --primary-color16: #515151; /* used */
    --primary-color17: #202027; /* used */ 
    --primary-color18: #e63030; /* used */ 
}

/* TIP4SERV-ADDITIONAL-CSS DONT TOUCH ME */
/* --- GLOBAL THEME --- */
body {
    font-family: 'Inter', sans-serif;
    color: #e5e5e5;
    background: url('https://i.imgur.com/8QfQ2yT.jpeg') no-repeat center center fixed;
    background-size: cover;
}

* {
    transition: 0.2s ease-in-out;
}

/* --- ANIMATED RUST HEADER --- */
.header {
    background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
    border-bottom: 2px solid #ff7b00;
    animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {
    0% { box-shadow: 0 0 0px #ff7b00; }
    50% { box-shadow: 0 0 12px #ff7b00; }
    100% { box-shadow: 0 0 0px #ff7b00; }
}

.header a {
    color: #ffb347 !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header a:hover {
    color: #ff9a1f !important;
}

/* --- STORE DESCRIPTION BOX --- */
.store-description {
    max-width: 980px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0,0,0,0.75);
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    line-height: 1.7;
    font-size: 16px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* --- SECTION TITLES --- */
.section-title {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #ff7b00 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 120, 0, 0.4);
}

/* --- PRODUCT CARDS --- */
.product-card {
    background: rgba(0,0,0,0.75) !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    padding: 15px !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #ffb347 !important;
    box-shadow: 0 0 18px rgba(255,179,71,0.25);
}

/* Product titles */
.product-card-title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 8px !important;
}

/* Price styling */
.product-card-price {
    color: #ffb347 !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}

/* --- FEATURED / TOP PRODUCT BOXES --- */
.featured-box,
.top-product-box {
    background: rgba(0,0,0,0.75) !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    padding: 25px !important;
    box-shadow: 0 0 15px rgba(0,0,0,0.35);
}

/* No data styling */
.no-data {
    color: #777 !important;
    font-style: italic;
    font-size: 14px;
}

/* --- RUST STYLE BUTTONS --- */
.btn-primary {
    background: #ff7b00 !important;
    color: #000 !important;
    border-radius: 4px !important;
    font-weight: 900 !important;
    padding: 12px 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #ffa64d !important;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4) !important;
}

/* --- FOOTER --- */
.footer {
    background: #0f0f0f !important;
    border-top: 1px solid #222 !important;
    padding: 25px 0 !important;
    color: #888 !important;
    font-size: 14px;
    text-align: center;
}

/* --- MOBILE FIXES --- */
@media (max-width: 768px) {
    .store-description {
        margin: 20px;
        padding: 20px;
    }

    .product-card {
        margin-bottom: 20px !important;
    }

    .section-title {
        font-size: 22px;
    }
}
/* TIP4SERV-ADDITIONAL-CSS DONT TOUCH ME */
