/* ============================================
   BASE STYLES
   ============================================ */

   html, body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-size: 14px;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

/* ============================================
   HEADER
   ============================================ */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: hsl(24, 100%, 45%);
}

.header-title .logo {
    height: 35px;
    width: auto;
    max-width: 100%;
}

.header-title .alt-logo,
.header-title .very-alt-logo {
    display: none;
}

@media (max-width: 1000px) {
    .header-title .default-logo {
        display: none;
    }
    .header-title .alt-logo {
        display: block;
    }
}

@media (max-width: 720px) {
    .header-title .default-logo,
    .header-title .alt-logo {
        display: none;
    }
    .header-title .very-alt-logo {
        display: block;
        height: 35px;
        width: auto;
        max-width: 100%;
    }
}

.header-title p,
.header-nav a,
.header-auth label,
.header-auth a,
.header-title a {
    color: #ffffff;
    margin: 0 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
    padding: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    color: #e0e0e0;
}

h2 {
    padding: 5px;
    font-weight: 100;
    color: #e0e0e0;
}

h3 {
    font-size: 14px;
    font-weight: 300;
    color: #e0e0e0;
}

p {
    color: #c0c0c0;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

.p2 {
    color: #c0c0c0;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
    padding: 5px;
    text-align: left;
}

span {
    color: #e0e0e0;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
    display: flex;
    width: 100%;
    height: 100%;
    padding-top: 10px;
}

.centered-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 10px;
    width: 95%;
    min-width: 100px;
    max-width: 1000px;
    min-height: 50px;
    background-color: #1a1a1a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    border: 1px solid #3a3a3a;
}

.scroll-container {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.buy_container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 1200px;
    padding: 5px;
    margin: 10px;
    justify-content: space-evenly;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 120px);
    grid-gap: 10px;
    width: 100%;
}

.grid-container-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, 240px);
    grid-gap: 10px;
    width: 100%;
}

.grid-container-review {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 400px));
    grid-gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.auto-fit-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.auto-fit-grid-container > div {
    border: 1px solid #3a3a3a;
    padding: 8px;
    flex: 1 1 auto;
    min-width: 250px;
    background-color: #1a1a1a;
}

.auto-fit-grid-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* ============================================
   GRID ITEMS
   ============================================ */

.grid-item {
    width: 120px;
    height: 180px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #3a3a3a;
    padding: 0;
    font-size: 12px;
}

.grid-item-large {
    width: 240px;
    height: 300px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #3a3a3a;
    padding: 0;
    font-size: 12px;
}

.grid-item-review {
    background-color: #1a1a1a;
    display: flex;
    max-width: 360px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #3a3a3a;
    padding: 20px;
    font-size: 12px;
}

/* ============================================
   BOXES & CARDS
   ============================================ */

.box {
    background-color: #1a1a1a;
    padding: 5px;
    padding-bottom: 10px;
    margin: 2px;
    border-radius: 10px;
    flex-grow: 1;
    flex-basis: 50px;
    max-width: 700px;
    min-height: 100px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background-color 0.3s;
    border: 1px solid #3a3a3a;
}

.box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.box a,
.box a:visited {
    text-decoration: none;
}

.border_box {
    background: linear-gradient(43deg, #196674, #ae4900 50%, #ff6f00);
    padding: 1px;
    padding-top: 10px;
    margin: 15px;
    border-radius: 12px;
    flex-grow: 1;
    flex-basis: 50px;
    max-width: 700px;
    min-height: 100px;
    text-align: center;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.color2 {
    background-color: #1a1a1a;
}

/* ============================================
   SIDEBAR
   ============================================ */

.left {
    width: 200px;
    padding: 20px;
    display: block;
    text-decoration: none;
    padding: 5px;
}

.left a,
.left p {
    display: block;
    text-decoration: none;
    padding: 5px;
    color: #e0e0e0;
    background-color: #1a1a1a;
    border-radius: 5px;
}

.left a:hover {
    background-color: #3a3a3a;
}

.highlighted {
    background-color: hsl(24, 100%, 45%) !important;
    color: #ffffff !important;
}

.left h2 {
    font-size: 18px;
    font-weight: 100;
    display: block;
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 5px;
}

.left h3 {
    font-size: 14px;
    font-weight: 300;
    display: block;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 5px;
    color: #ffffff;
    background-color: hsl(24, 100%, 45%);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.right {
    flex-grow: 1;
    padding: 30px 20px;
    display: block;
    margin-bottom: 10px;
}

.right h2 {
    font-size: 24px;
    font-weight: 200;
    margin: 0 0 20px 0;
    padding: 0;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* ============================================
   FORMS & INPUTS
   ============================================ */

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    margin: 5px 0;
    background-color: #1a1a1a;
    border: 1px solid #3a3a3a;
    color: #e0e0e0;
    border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: hsl(24, 100%, 45%);
}

form {
    width: 100%;
    max-width: 360px;
    min-width: 200px;
    margin: 20px auto;
    padding: 10px;
    background: #1a1a1a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #3a3a3a;
}

/* ============================================
   BUTTONS
   ============================================ */

button {
    width: 170px;
    padding: 5px;
    background-color: hsl(24, 100%, 45%);
    color: white;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: hsl(24, 100%, 50%);
}

.button2 {
    width: 200px;
    padding: 5px;
    background-color: #4a4a4a;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
}

.button2:hover {
    background-color: #5a5a5a;
}

/* ============================================
   DIVIDERS
   ============================================ */

.divider {
    width: 1px;
    background-color: #3a3a3a;
    margin-right: 10px;
    align-self: stretch;
}

.h-divider {
    height: 1px;
    background-color: #3a3a3a;
    align-self: stretch;
    margin-left: 5px;
    margin-right: 5px;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 1fr;
    gap: 10px;
    padding: 10px;
}

.img-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
    background-color: #1a1a1a;
}

.gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ============================================
   IMAGES
   ============================================ */

#responsive-image {
    width: 90%;
    height: auto;
    display: block;
}

.progressive-image {
    width: 90%;
    height: auto;
    display: block;
}

.blur {
    filter: blur(5px);
    transition: filter 0.3s ease-out;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: #1a1a1a;
    color: #c0c0c0;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: right;
    z-index: 1000;
    padding: 5px 0;
    padding-right: 10px;
    border-top: 1px solid #3a3a3a;
}

.footer-container {
    display: flex;
    justify-content: right;
    gap: 20px;
    padding-right: 10px;
}

.footer-container a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: inherit;
    transition: color 0.3s;
}

.footer-container a:hover {
    color: hsl(24, 100%, 60%);
    text-decoration: underline;
}

/* ============================================
   LEGAL
   ============================================ */

.legal p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 2;
    padding: 10px;
}

/* ============================================
   MODERN HOMEPAGE STYLES
   ============================================ */

.modern-right .centered-box {
    background: transparent;
    box-shadow: none;
    border: none;
    max-width: 1200px;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 5px 20px 10px 20px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
}

.hero-section h2 {
    font-size: 20px;
    font-weight: 300;
    color: #b0b0b0;
    margin: 5px 0 15px 0;
    line-height: 1.6;
}

.hero-section img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin: 15px auto;
    display: block;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: hsl(24, 100%, 60%);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #b0b0b0;
    margin-top: 5px;
}

/* What Is Section */
.what-is-section {
    background: #242424;
    border-radius: 16px;
    padding: 25px 20px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.what-is-section h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: hsl(24, 100%, 50%);
}

.feature-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.feature-text {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* Buy Section - Modern */
.buy-section {
    margin: 20px 0;
    text-align: center;
}

.buy-section h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.modern-buy-box {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #3a3a3a;
    position: relative;
    overflow: hidden;
}

.modern-buy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(24, 100%, 50%), hsl(24, 100%, 65%));
}

.modern-buy-box h2 {
    font-size: 18px;
    font-weight: 300;
    color: #b0b0b0;
    margin: 0 0 10px 0;
}

.price-tag {
    font-size: 56px;
    font-weight: bold;
    color: #ffffff;
    margin: 20px 0;
}

.price-tag span {
    font-size: 24px;
    color: #b0b0b0;
    font-weight: 300;
}

.benefits-list {
    text-align: left;
    margin: 20px 0;
    padding: 0 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    font-size: 16px;
    color: #d0d0d0;
}

.benefit-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: hsl(24, 100%, 50%);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.modern-cta-button {
    background: linear-gradient(135deg, hsl(24, 100%, 50%), hsl(24, 100%, 60%));
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: auto;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
}

.modern-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 111, 0, 0.4);
}

.small-link {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
    display: block;
}

.small-link a {
    color: hsl(24, 100%, 60%);
    text-decoration: none;
}

.small-link a:hover {
    text-decoration: underline;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.benefit-card {
    background: #242424;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #3a3a3a;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.benefit-card h2 {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.benefit-card h1 {
    font-size: 32px;
    color: hsl(24, 100%, 60%);
    margin: 10px 0;
    font-weight: bold;
}

.benefit-card p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.6;
    margin-top: 15px;
}

/* Reviews Section */
.reviews-section {
    margin: 20px 0;
}

.reviews-section h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 8px;
    color: #ffffff;
}

.reviews-section h2 {
    font-size: 18px;
    text-align: center;
    color: #b0b0b0;
    font-weight: 300;
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.review-card {
    background: #242424;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #3a3a3a;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.review-stars {
    color: hsl(24, 100%, 60%);
    font-size: 18px;
    margin-bottom: 10px;
}

.review-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    display: block;
}

.review-text {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Inspiration Section */
.inspiration-section {
    background: #242424;
    border-radius: 16px;
    padding: 30px 25px;
    margin: 20px 0;
    text-align: center;
}

.inspiration-section h1 {
    font-size: 36px;
    margin-bottom: 8px;
    color: #ffffff;
}

.inspiration-section p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

/* Section Divider */
.section-spacer {
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-right .centered-box {
        padding: 5px;
        width: 100%;
    }

    .hero-section {
        padding: 5px 10px 10px 10px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section h2 {
        font-size: 16px;
    }

    .hero-section img {
        width: 100%;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .what-is-section,
    .modern-buy-box,
    .inspiration-section {
        padding: 20px 15px;
        margin: 15px 0;
    }

    .what-is-section h1,
    .buy-section h1,
    .reviews-section h1,
    .inspiration-section h1 {
        font-size: 28px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .price-tag {
        font-size: 36px;
    }

    .modern-cta-button {
        font-size: 16px;
        padding: 12px 30px;
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-card h1 {
        font-size: 28px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card {
        padding: 15px;
    }

    .section-spacer {
        height: 15px;
    }
}