/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   CONTAINER
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px 0;
    border-bottom: 3px solid #ff6b00;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b00 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.feature-badge .icon {
    width: 20px;
    height: 20px;
    color: #ff6b00;
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .feature-badge {
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* ===================================
   OFFER SECTION
   =================================== */
.offer {
    background: #121212;
    padding: 60px 0;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.offer-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.offer-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff0000 0%, #ff6b00 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.sale-percent {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.sale-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.offer-info {
    padding-top: 20px;
}

.offer-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.offer-description {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}

.offer-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.offer-benefits li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #e0e0e0;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #ff6b00;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #ff6b00;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-old {
    text-align: left;
}

.price-new {
    text-align: right;
}

.price-old .label,
.price-new .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.price-old .amount {
    font-size: 20px;
    color: #999999;
    text-decoration: line-through;
}

.price-new .amount {
    font-size: 42px;
    font-weight: 900;
    color: #ff6b00;
}

.timer-block {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.timer-label {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.el-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff6b00 0%, #ffa500 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
}

.stock-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #cccccc;
}

.stock-icon {
    font-size: 18px;
}

@media (max-width: 968px) {
    .offer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offer-title {
        font-size: 28px;
    }
    
    .price-new .amount {
        font-size: 32px;
    }
}

/* ===================================
   SECTION TITLES
   =================================== */
.section-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00 0%, #ffa500 100%);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
        margin-bottom: 35px;
    }
}

/* ===================================
   PRODUCT DETAILS
   =================================== */
.product-details {
    background: #0a0a0a;
    padding: 80px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.detail-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
}

.detail-icon svg {
    width: 30px;
    height: 30px;
    color: #ff6b00;
}

.detail-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.detail-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

@media (max-width: 768px) {
    .product-details {
        padding: 50px 0;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===================================
   GALLERY
   =================================== */
.gallery {
    background: #121212;
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-button-secondary {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    background: transparent;
    border: 2px solid #ff6b00;
    color: #ff6b00;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #ff6b00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

@media (max-width: 768px) {
    .gallery {
        padding: 50px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===================================
   REVIEWS
   =================================== */
.reviews {
    background: #0a0a0a;
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ff6b00;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.review-rating {
    color: #ffa500;
    font-size: 14px;
}

.review-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 15px;
}

.review-likes {
    font-size: 13px;
    color: #999999;
    font-weight: 600;
}

@media (max-width: 768px) {
    .reviews {
        padding: 50px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===================================
   HOW TO ORDER
   =================================== */
.how-to-order {
    background: #121212;
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #ff6b00;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.step p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

@media (max-width: 768px) {
    .how-to-order {
        padding: 50px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===================================
   ORDER SECTION
   =================================== */
.order-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.order-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
}

.order-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
}

.order-features {
    margin-bottom: 35px;
}

.order-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #e0e0e0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #ff6b00;
    flex-shrink: 0;
}

.final-price {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #ff6b00;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.final-price-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.final-price-amount {
    font-size: 52px;
    font-weight: 900;
    color: #ff6b00;
    margin-bottom: 10px;
    line-height: 1;
}

.final-price-old {
    font-size: 18px;
    color: #666666;
    text-decoration: line-through;
}

.order-form-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    background: #0a0a0a;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.order-form input:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.order-form input::placeholder {
    color: #666666;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff6b00 0%, #ffa500 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    margin-bottom: 15px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
}

.form-note {
    font-size: 12px;
    color: #999999;
    text-align: center;
    line-height: 1.5;
}

.form-note a {
    color: #ff6b00;
    text-decoration: underline;
}

.urgency-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    color: #cccccc;
}

.urgency-icon {
    font-size: 18px;
}

@media (max-width: 968px) {
    .order-section {
        padding: 50px 0;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-title {
        font-size: 26px;
    }
    
    .final-price-amount {
        font-size: 42px;
    }
    
    .order-form-wrapper {
        padding: 30px 20px;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info p {
    font-size: 13px;
    color: #999999;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: #666666;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

/* ===================================
   TIMER STYLES
   =================================== */
.time_circles > div {
    display: inline-block;
    margin: 0 5px;
}

.time_circles > div > span {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #ff6b00;
    margin-bottom: 5px;
}

.time_circles > div > h4 {
    font-size: 12px !important;
    font-weight: 400;
    text-transform: uppercase;
    color: #999999;
}