/* BASE REQUIRED CSS */
body {
    min-width: 480px;
    background: #0a0a0a; /* Dark sleek background for the body */
    font-family: "Gilroy", sans-serif; /* Jost as fallback, highly elegant */
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #111;
    cursor: default;
    margin: 0;
    padding: 0;
}

.main_wrapper {
    margin: 0 auto;
    width: 480px;
    background: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.section-title {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: center;
}

.section-title.text-left {
    text-align: left;
}

/* UTILS */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.w-100 { width: 100%; }

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    max-height: 850px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 20px;
    color: #fff;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-price-block {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    justify-content: center;
}

.hero-old-price {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.hero-new-price {
    font-size: 38px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    color: #fff;
}

.hero-urgency {
    color: #fff;
    background: #e73a3a;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}





/* BUTTONS */
.btn-primary {
    background: #000;
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0; /* brutalist edge */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* GALLERY GRID */
.gallery {
    padding: 60px 20px;
    background: #fff;
}

.gallery-grid {
    display: flex;
    gap: 10px;
}

.grid-img {
    width: 100%;
    object-fit: cover;
}

.grid-img.large {
    width: 60%;
    height: auto;
}

.grid-col {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grid-col img {
    height: 50%;
    object-fit: cover;
}

/* DESCRIPTION */
.description {
    padding: 40px 20px 60px;
    background: #f8f8f8;
}

.desc-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.inline-video {
    width: 100%;
    border-radius: 0;
    margin-top: 30px;
    display: block;
}

/* ADVANTAGES */
.advantages {
    padding: 60px 20px;
    background: #fff;
}

.adv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.adv-list li {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #000;
    font-size: 16px;
    font-weight: 500;
}

.adv-list .icon {
    font-size: 24px;
    margin-right: 15px;
}

/* REVIEWS */
.reviews {
    padding: 60px 20px;
    background: #f1f1f1;
}

.reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #fff;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* soft shadow */
}

.review-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    color: #000; /* Black stars for chic look */
    letter-spacing: 2px;
}

.name {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* MORE IMAGES */
.more-images {
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grid-half {
    display: flex;
    gap: 10px;
    padding: 0 10px;
}

.grid-half img {
    width: calc(50% - 5px);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.full-img {
    width: calc(100% - 20px);
    margin: 0 auto 10px;
    display: block;
}

/* SIZES & DETAILS */
.sizes-details {
    padding: 60px 20px;
    background: #fff;
}

.details-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.sizes-label {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.size-options {
    display: flex;
    gap: 15px;
}

.size-option {
    flex: 1;
    border: 2px solid #000;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.selected {
    background: #000;
    color: #fff;
}

/* ORDER SECTION */
.order-section {
    padding: 60px 20px;
    background: #000;
    color: #fff;
}

.size-options-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.size-radio-label {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.size-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.size-radio-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #888;
}

.size-radio-label input[type="radio"]:checked ~ .size-radio-custom {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.size-radio-label input[type="radio"]:focus ~ .size-radio-custom {
    box-shadow: 0 0 0 2px #fff;
}

.price-block {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e73a3a;
    color: #fff;
    padding: 8px 15px;
    font-weight: bold;
    transform: rotate(5deg);
    font-size: 18px;
}

.prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 24px;
}

.new-price {
    font-size: 48px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    color: #fff;
}

.form-title {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    border-color: #fff;
}

.input-group input::placeholder {
    color: #888;
}

.error-msg {
    display: none;
    color: #e73a3a;
    font-size: 12px;
    margin-top: 5px;
    position: absolute;
    bottom: -18px;
    left: 0;
}

.input-group.invalid .error-msg {
    display: block;
}

.input-group.invalid input {
    border-color: #e73a3a;
}

.order-form .btn-primary {
    background: #fff;
    color: #000;
    margin-top: 10px;
}

/* FOOTER */
.footer {
    padding: 30px 20px;
    text-align: center;
    background: #0a0a0a;
    color: #666;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 400px;
    max-width: 90%;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.5;
}
