
/* CSS for page-88v */
.page-88v {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
    overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
}

/* Section common styles */
.page-88v__section-title {
    text-align: center;
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 40px;
    padding: 0 15px;
    position: relative;
    font-weight: 700;
}
.page-88v__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #e74c3c; /* Red color for accent */
    margin: 10px auto 0;
    border-radius: 2px;
}
.page-88v__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 15px;
    font-size: 1.1em;
    color: #555;
}

/* Hero Section */
.page-88v__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding-top: 10px; /* Small decorative padding, as body padding handles header offset */
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); /* Red gradient */
}

.page-88v__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
    max-width: 100% !important; /* Mobile responsive */
    height: auto !important; /* Mobile responsive */
    box-sizing: border-box !important; /* Mobile responsive */
}

.page-88v__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-88v__hero-title {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
}

.page-88v__hero-subtitle {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    margin-top: 5px;
}

.page-88v__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-88v__hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-88v__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-88v__hero-button--primary {
    background-color: #27ae60; /* Green */
    color: #fff;
}
.page-88v__hero-button--primary:hover {
    background-color: #2ecc71;
    transform: translateY(-3px);
}

.page-88v__hero-button--secondary {
    background-color: #3498db; /* Blue */
    color: #fff;
}
.page-88v__hero-button--secondary:hover {
    background-color: #5dade2;
    transform: translateY(-3px);
}

/* About Section */
.page-88v__about-section {
    padding: 60px 20px;
    background-color: #fff;
}

/* Products Section */
.page-88v__products-section {
    padding: 60px 20px;
    background-color: #f1f1f1;
}

.page-88v__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88v__product-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}
.page-88v__product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-88v__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100% !important; /* Mobile responsive */
    height: auto !important; /* Mobile responsive */
    box-sizing: border-box !important; /* Mobile responsive */
}

.page-88v__product-title {
    font-size: 1.5em;
    color: #e74c3c;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-88v__product-description {
    font-size: 1em;
    color: #666;
    padding: 0 15px;
}

/* Promotions Section */
.page-88v__promotions-section {
    padding: 60px 20px;
    background-color: #fff;
}

.page-88v__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-88v__promotion-item {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}
.page-88v__promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-88v__promotion-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100% !important; /* Mobile responsive */
    height: auto !important; /* Mobile responsive */
    box-sizing: border-box !important; /* Mobile responsive */
}

.page-88v__promotion-title {
    font-size: 1.4em;
    color: #27ae60;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-88v__promotion-description {
    font-size: 1em;
    color: #666;
    padding: 0 15px;
}

/* Features Section */
.page-88v__features-section {
    padding: 60px 20px;
    background-color: #f1f1f1;
}

.page-88v__features-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
}

.page-88v__feature-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Required for list items */
}
.page-88v__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Adjust feature icon size to meet minimum 200x200 requirement */
.page-88v__feature-icon {
    width: 200px; /* Updated to meet min size */
    height: 200px; /* Updated to meet min size */
    object-fit: contain; /* Use contain to avoid cropping large images */
    margin-bottom: 15px;
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
}

.page-88v__feature-title {
    font-size: 1.3em;
    color: #3498db;
    margin-bottom: 10px;
}

.page-88v__feature-description {
    font-size: 0.95em;
    color: #666;
}

/* FAQ Section */
.page-88v__faq-section {
    padding: 60px 20px;
    background-color: #fff;
}

.page-88v__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-88v__faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fdfdfd;
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-88v__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #e74c3c; /* Red */
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    user-select: none;
    transition: background-color 0.3s ease;
    box-sizing: border-box; /* Ensure padding/border included in width */
}
.page-88v__faq-question:hover {
    background-color: #c0392b; /* Darker red on hover */
}

.page-88v__faq-q-text {
    margin: 0;
    font-size: 1.1em;
    color: #fff; /* Ensure text color is white for contrast */
    pointer-events: none; /* Prevent h3 from blocking click */
}

.page-88v__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click */
}

.page-88v__faq-item.active .page-88v__faq-toggle {
    transform: rotate(45deg); /* Change + to X-like or - */
}

.page-88v__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; /* Initial padding 0, will expand */
    background-color: #fff;
    color: #555;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-88v__faq-item.active .page-88v__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 20px !important; /* Expanded padding */
    opacity: 1;
}

.page-88v__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

/* Floating Buttons */
.page-88v__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-88v__floating-button {
    display: block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    font-size: 1em;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 100px;
}
.page-88v__floating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-88v__floating-button--register {
    background-color: #e74c3c; /* Red */
}
.page-88v__floating-button--login {
    background-color: #3498db; /* Blue */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-88v__hero-title {
        font-size: 2.5em;
    }
    .page-88v__hero-description {
        font-size: 1em;
    }
    .page-88v__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-88v__hero-button {
        width: 80%;
        margin: 0 auto;
    }

    .page-88v__section-title {
        font-size: 1.8em;
    }
    .page-88v__section-description {
        font-size: 0.95em;
    }

    .page-88v__product-grid,
    .page-88v__promotion-grid,
    .page-88v__features-list {
        grid-template-columns: 1fr; /* Single column on mobile */
        padding: 0 10px; /* Reduce padding for smaller screens */
        width: 100% !important; /* Enforce width */
        max-width: 100% !important; /* Enforce max-width */
        box-sizing: border-box !important; /* Ensure box-sizing */
    }

    /* List item specific mobile styles */
    .page-88v__product-item,
    .page-88v__promotion-item,
    .page-88v__feature-item,
    .page-88v__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important; /* Adjust padding */
        padding-right: 10px !important; /* Adjust padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-88v__feature-item {
        padding: 20px !important; /* Adjusted padding for feature items */
    }

    /* Image responsive for all images */
    .page-88v__hero-image,
    .page-88v__product-image,
    .page-88v__promotion-image,
    .page-88v__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-88v__faq-question {
        padding: 15px 15px;
        font-size: 1em;
    }
    .page-88v__faq-q-text {
        font-size: 1em;
    }
    .page-88v__faq-answer {
        padding: 0 15px;
    }
    .page-88v__faq-item.active .page-88v__faq-answer {
        padding: 15px 15px !important;
    }

    .page-88v__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    .page-88v__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .page-88v__hero-title {
        font-size: 2em;
    }
    .page-88v__hero-description {
        font-size: 0.9em;
    }
    .page-88v__section-title {
        font-size: 1.6em;
    }
    .page-88v__section-description {
        font-size: 0.85em;
    }
}
  