/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header Styles */
.header {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    left: 0;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu:hover span {
    background-color: #d97706;
}

.logo {
    height: 3rem;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Sidebar Styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #000;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 0;
}

.sidebar-menu.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #374151;
}

.sidebar-logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: #d97706;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid #374151;
}

.sidebar-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.sidebar-nav a:hover {
    background-color: #374151;
    color: #d97706;
}

.desktop-nav {
    display: none;
    justify-content: center;
    gap: 3rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #d97706;
    border-bottom-color: #d97706;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    border-top: 1px solid #374151;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 40;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #374151;
}

.mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.mobile-menu a:hover {
    background-color: #374151;
    color: #d97706;
}

/* Hero Section */
.hero-section {
    background-color: #fff;
    padding: 1.5rem 0 4rem;
    width: 100%;
    overflow-x: hidden;
}

.hero-grid {
    width: 100%;
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    background-color: #ea580c;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.pulse {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.font-bold {
    font-weight: 700;
}

.main-image-container {
    position: relative;
    width: 100%;
}

.main-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-square {
    aspect-ratio: 1;
    max-width: 24rem;
    width: 100%;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.discount-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background-color: #ea580c;
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.375rem;
    transform: rotate(12deg);
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-thumbnails {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.carousel-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnails-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    width: max-content;
    min-width: 100%;
}

.thumbnail-btn {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    padding: 0;
}

.thumbnail-btn:hover {
    transform: scale(1.05);
    border-color: #9ca3af;
}

.thumbnail-btn.active {
    border-color: #d97706;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-indicators {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
}

.indicators {
    display: flex;
    gap: 0.25rem;
}

.indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background-color: #d97706;
}

.pricing-section {
    margin: 1rem 0;
}

.pricing {
    text-align: center;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.25rem;
    color: #6b7280;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d97706;
}

.pix-price {
    font-size: 1.125rem;
    color: #16a853;
    font-weight: 600;
    margin: 0.75rem 0;
}

.installments {
    font-size: 1rem;
    color: #6b7280;
    margin: 0.5rem 0;
}

/* Rating Section */
.rating-section {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    line-height: 1;
}

.rating-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Product Variants Carousel */
.variants-section {
    margin: 2rem 0;
}

.variant-group {
    margin-bottom: 1.5rem;
}

.variant-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
}

.required {
    color: #ea580c;
}

.variants-carousel {
    position: relative;
    margin-bottom: 1.5rem;
}

.variants-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.variant-option {
    min-width: 120px;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.variant-option:hover {
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.variant-option.selected {
    border-color: #d97706;
    background: #fef3c7;
}

.color-image-preview {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.variant-option.selected .color-image-preview {
    border-color: #d97706;
}

.color-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.color-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

.size-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.size-option {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.size-option:hover {
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.size-option.selected {
    border-color: #d97706;
    background: #fef3c7;
}

.size-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.size-measurements {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Size Chart */
.size-chart {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.size-chart-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
    text-align: center;
}

.size-chart-table {
    overflow-x: auto;
}

.measurements-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.measurements-table th,
.measurements-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.measurements-table th {
    background: #d97706;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.measurements-table th:first-child {
    background: #92400e;
}

.measurements-table td {
    font-size: 0.875rem;
    color: #374151;
}

.measurement-label {
    background: #fef3c7 !important;
    font-weight: 600;
    color: #92400e !important;
    text-align: left !important;
    font-size: 0.75rem;
}

.measurements-table tbody tr:last-child td {
    border-bottom: none;
}

.measurements-table tbody tr:hover {
    background: #fef3c7;
}

@media (max-width: 768px) {
    .size-chart {
        padding: 1rem;
    }
    
    .measurements-table th,
    .measurements-table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .size-chart-title {
        font-size: 1rem;
    }
}

/* Carousel buttons removed */

.color-options, .size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.color-btn, .size-btn {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.color-btn:hover, .size-btn:hover {
    transform: scale(1.05);
    border-color: #9ca3af;
}

.color-btn.selected, .size-btn.selected {
    border-color: #d97706;
    background-color: rgba(245, 158, 11, 0.1);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
}

.color-preview {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    margin: 0 auto 0.25rem;
    border: 1px solid #e5e7eb;
}

.cta-section {
    text-align: center;
    margin: 2rem 0;
}

.cta-button {
    width: 100%;
    max-width: 28rem;
    background-color: #ea580c;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.cta-button:hover {
    background-color: #c2410c;
    transform: scale(1.05);
}

.offer-info {
    text-align: center;
    margin-top: 1.5rem;
}

.offer-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.75rem;
}

.offer-subtext {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-icon {
    font-size: 1.5rem;
    color: #000;
}

.guarantee-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.guarantee-desc {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Features Section */
.features-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-title.large {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 64rem;
    margin: 0 auto;
}

.highlight {
    font-weight: 700;
    color: #d97706;
}

.highlight-black {
    font-weight: 700;
    color: #000;
}

.highlight-orange {
    color: #d97706;
}

.gif-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.feature-gif {
    width: 100%;
    max-width: 28rem;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 3rem;
    color: #d97706;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #6b7280;
}

/* Tactical Section */
.tactical-section {
    background: #000;
    color: #fff;
    padding: 4rem 0;
}

.tactical-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tactical-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.tactical-description {
    font-size: 1.125rem;
    color: #fff;
}

.tactical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tactical-card {
    text-align: center;
    padding: 1.5rem;
}

.tactical-icon {
    font-size: 2.5rem;
    color: #d97706;
    margin-bottom: 1rem;
}

.tactical-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tactical-card-description {
    color: #d1d5db;
    font-size: 0.875rem;
}

.features-list {
    text-align: center;
    margin: 3rem 0;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.checkmarks-list {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.checkmarks-list div {
    margin-bottom: 0.5rem;
}

.features-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-image-card {
    background-color: #111827;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #d97706;
}

.feature-image-container {
    aspect-ratio: 1;
    width: 100%;
    margin-bottom: 1rem;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.feature-image-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 0.5rem;
}

.feature-image-description {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Specifications Section */
.specs-section {
    background-color: #f3f4f6;
    padding: 4rem 0;
}

.specs-grid {
    display: flex;
    justify-content: center;
}

.specs-column {
    max-width: 48rem;
    width: 100%;
}

.specs-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #374151;
}

.spec-value {
    color: #6b7280;
    text-align: right;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #111827;
    color: #fff;
    padding: 4rem 0;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #1f2937;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #374151;
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 700;
    color: #d97706;
}

.testimonial-video {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 4rem 0;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.accordion-trigger {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: #fff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-trigger:hover {
    background-color: #f9fafb;
}

.accordion-trigger.active {
    background-color: #d97706;
    color: #fff;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-trigger.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 1.5rem;
    background-color: #f9fafb;
    color: #6b7280;
    line-height: 1.6;
}

.accordion-content.active {
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    padding: 4rem 0;
}

.final-cta-content {
    text-align: center;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ea580c;
    margin-bottom: 1.5rem;
}

.final-cta-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.price-highlight {
    font-weight: 800;
    font-size: 1.5rem;
}

.savings-highlight {
    font-weight: 700;
}

.urgency-box {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.urgency-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgency-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.urgency-warning {
    font-weight: 700;
    color: #ea580c;
}

.delivery-info {
    margin-top: 2rem;
}

.delivery-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.delivery-description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.final-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
}

.final-guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.final-guarantee-icon {
    font-size: 1.25rem;
}

.final-guarantee-label {
    font-weight: 600;
    font-size: 0.875rem;
}

.final-guarantee-desc {
    font-size: 0.75rem;
    color: #d1d5db;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 4rem;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-description {
    color: #9ca3af;
    text-align: center;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-info, .info-list, .guarantees-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.info-list p, .guarantees-list p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
    max-width: 24rem;
    width: calc(100% - 2rem);
    padding: 0 1rem;
    display: none;
}

.popup-overlay.active {
    display: block;
    animation: slideInFromBottom 0.5s ease-out;
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-content {
    background-color: #fff;
    border: 2px solid #ea580c;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.popup-content:hover {
    transform: scale(1.05);
}

.popup-left {
    flex: 1;
}

.popup-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ea580c;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.popup-price {
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
}

.popup-cta {
    background-color: #ea580c;
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.popup-cta:hover {
    background-color: #c2410c;
}

/* Color Classes */
.bg-green-700 { background-color: #15803d; }
.bg-yellow-600 { background-color: #ca8a04; }
.bg-black { background-color: #000; }
.bg-gray-600 { background-color: #4b5563; }
.bg-blue-900 { background-color: #1e3a8a; }

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .logo {
        height: 4.5rem;
    }
    
    .hamburger-icon, .close-icon, .faq-icon {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .thumbnail-btn {
        width: 4rem;
        height: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-title.large {
        font-size: 4rem;
    }
    
    .benefit-card {
        padding: 2.5rem;
    }
    
    .cta-button {
        font-size: 1.5rem;
        padding: 1.5rem 3rem;
    }
    
    .mobile-indicators {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
    }
    
    .popup-content {
        padding: 1rem 1.5rem;
    }
    
    .popup-title {
        font-size: 1.125rem;
    }
    
    .popup-price {
        font-size: 1.75rem;
    }
    
    .popup-cta {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .thumbnails-wrapper {
        justify-content: center;
    }
    
    .thumbnail-btn {
        width: 5rem;
        height: 5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tactical-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title.large {
        font-size: 5rem;
    }
}

/* Why Cheap Section */
.why-cheap-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
}

.why-cheap-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-cheap-content {
    max-width: 4xl;
    margin: 0 auto;
}

.why-cheap-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
}

.why-cheap-text .highlight {
    font-weight: 700;
    color: #d97706;
}

.why-buy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 5xl;
    margin: 0 auto;
}

.why-buy-card {
    background: #fff;
    border: 2px solid #fbbf24;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.why-buy-card:hover {
    border-color: #ea580c;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.why-buy-icon-container {
    height: 4rem;
    width: 4rem;
    margin: 0 auto 1rem;
    background-color: #ea580c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-buy-icon {
    font-size: 2rem;
    color: #000;
}

.why-buy-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.why-buy-description {
    color: #374151;
    text-align: center;
}

.team-section {
    text-align: center;
    margin-top: 3rem;
}

.team-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.team-description {
    font-size: 1.125rem;
    color: #374151;
    max-width: 4xl;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .why-buy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-title {
        font-size: 2.25rem;
    }
}

/* Utility Classes */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-orange { color: #ea580c; }
.text-gray { color: #6b7280; }
.bg-orange { background-color: #ea580c; }
.rounded { border-radius: 0.5rem; }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.transition { transition: all 0.3s ease; }