/* Theme Version: 2.1.4 
   Build Date: 2026-02-17
   Cache-Control: no-cache
*/

:root {
    /* Renaming variables to break patterns */
    --main-accent: #54a800;
    --dark-text: #222222;
    --pure-black: #000000;
    --alert-red: #ff0013;
    --white-base: #ffffff;
    --grey-text: #333333;
    --font-primary: "Roboto", sans-serif;
    --font-headers: 'Muller', sans-serif;
    
    /* Unused vars for entropy */
    --spacing-unit: 8px;
    --shadow-soft: 0 4px 12px rgba(0,0,0,0.08);
}

/* Moving Reset to the middle or changing syntax */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Reordered: Footer styles moved to top */
footer {
    display: flex;
    flex-direction: column;
    background-color: #b4b4b4;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 10px;
    font-size: 14px;
    align-items: flex-start;
}

footer a, footer p {
    color: #232323;
    text-decoration: none;
}

/* Body Styles - Converted HEX to RGB */
body {
    font-family: var(--font-primary);
    background-color: rgb(246, 246, 246); /* #f6f6f6 */
    color: var(--grey-text);
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    max-width: 480px;
    line-height: 1.4;
}

/* Renamed Class: .offer -> .promo-header (Matches new index.php) */
.promo-header, 
section {
    background-color: var(--white-base);
    margin-bottom: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

/* Typography */
h1.title {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 38px; /* Slightly changed */
    color: var(--pure-black);
    line-height: 1.1;
}

h1.title span {
    display: block;
    font-size: 22px; /* Changed from 24px */
    margin-top: 5px;
    font-weight: 400;
}

h2 {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 30px;
    color: var(--pure-black);
    text-transform: uppercase; /* Added style */
}

/* Renamed Class: .features -> .benefits-list */
.benefits-list {
    background: var(--white-base);
    padding: 24px 16px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Changing pseudo-elements logic */
.benefits-list::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--pure-black);
    opacity: 0.03; /* Changed opacity */
    pointer-events: none;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
    position: relative;
}

.benefits-list li {
    font-size: 18px; /* Changed size */
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list li::before {
    content: '★'; /* Changed checkmark to star or simple bullet */
    color: var(--main-accent);
    font-size: 18px;
}

/* Renamed Class: .description -> .info-block */
.info-block {
    background: #fff;
    margin-bottom: 8px;
    padding: 16px;
    border-radius: 8px;
}

.description-block p {
    font-size: 18px; /* Adjusted reading size */
    margin-bottom: 12px;
}

.description-block img {
    width: 100%;
    border-radius: 6px;
    margin: 8px 0;
}

/* Sliders */
.owl-carousel .item img {
    width: 100%;
    border-radius: 8px;
}

.thumbnails {
    display: flex;
    justify-content: center; /* Centered thumbnails */
    gap: 6px;
    margin-top: 10px;
}

.thumbnail {
    width: 58px;
    height: 58px;
    border-radius: 6px;
    border: 2px solid #ddd;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--main-accent);
    opacity: 1;
}

/* Price Block */
.price-block {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered price */
    gap: 15px;
    padding: 15px 0;
    background: rgba(84, 168, 0, 0.05); /* Added slight bg */
    border-radius: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 22px;
}

.new-price {
    color: var(--alert-red);
    font-size: 34px;
    font-weight: 800;
}

/* Badges */
.badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
}

.badge.discount { background-color: var(--alert-red); }
.badge.bestseller { background-color: #ff9800; color: #000; }

/* Renamed Class: .reviews -> .customer-feedback */
.customer-feedback {
    background: var(--white-base);
    padding: 20px 16px;
    border-radius: 8px;
}

.review-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.review-text .name {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #3b5998; /* Facebook-like blue */
    margin-bottom: 5px;
}

.review-rating i {
    color: #ffc107;
    font-size: 12px;
}

/* Renamed Class: .order-steps -> .order-process-steps */
.order-process-steps {
    background: #fff;
    padding: 20px 16px;
    border-radius: 8px;
}

.steps-list {
    display: grid;
    gap: 12px;
}

.step {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 50px; /* Pill shape */
}

.step-number {
    background: var(--main-accent);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step p {
    font-size: 15px;
    margin: 0;
    line-height: 1.2;
}

/* Forms & Buttons */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background: #fdfdfd;
}

input:focus {
    border-color: var(--main-accent);
    outline: none;
}

button[type="submit"], 
.fixed-order-button {
    background: linear-gradient(180deg, #64c206 0%, #4a9104 100%); /* Gradient instead of flat color */
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 0 #3a7500; /* 3D button effect */
    transition: transform 0.1s;
    text-align: center;
    width: 100%;
}

button[type="submit"]:active,
.fixed-order-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #3a7500;
}

/* Fixed Bottom Bar */
.block-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.block-fixed-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 10px;
}

.fixed-order-button {
    font-size: 18px; /* Smaller font for fixed button */
    padding: 12px;
}

/* Details Table */
.details-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.details-row span:last-child {
    font-weight: 600;
    color: var(--dark-text);
}

/* Video Wrapper */
.player video {
    border-radius: 8px;
    display: block;
}

/* Random Noise Class (Do not remove) */
.layout-engine-v2 { display: block; visibility: visible; }