/* =============================================
   TADAPLAYGAME.IT - Responsive Styles
   ============================================= */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    :root {
        --container-max: 1320px;
    }

    h1.hero-title {
        font-size: 48px !important;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    :root {
        --container-max: 1140px;
    }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
    :root {
        --container-max: 960px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h1.hero-title {
        font-size: 38px !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    :root {
        --container-max: 720px;
        --spacing-xxl: 48px;
    }

    /* Page Hero - Tablet */
    .page-hero {
        min-height: 35vh;
        aspect-ratio: unset;
        background-size: cover !important;
    }

    .page-hero .hero-overlay {
        display: block;
    }

    /* Vision Section - Tablet */
    .vision-section .row {
        flex-direction: column;
        gap: 30px;
    }

    .vision-section .col-2 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .vision-section img {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Values Section - Tablet (3 cards in row) */
    .values-section > .container > div {
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .values-section > .container > div > div {
        flex: 0 0 calc(33.333% - 14px) !important;
        max-width: calc(33.333% - 14px) !important;
    }

    /* FAQ Section - Tablet */
    .faq-section .accordion {
        max-width: 100% !important;
    }

    /* Header Mobile */
    .header-inner {
        position: relative;
        justify-content: space-between;
        padding-left: 15px;
        padding-right: 15px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        left: 60%;
        transform: translateX(-50%);
        background-color: #FFFFFF;
        border-radius: 10px;
        width: 44px;
        height: 44px;
        padding: 12px;
        z-index: 1001;
    }

    .menu-toggle span {
        background-color: #397FE7;
        height: 2px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 60%;
        transform: translateX(-50%);
        width: 180px;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 15px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 1000;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 5px;
    }

    .nav-link {
        padding: 10px 5px;
        text-align: left;
        width: 100%;
        border-bottom: none;
        color: #397FE7 !important;
        font-family: 'Baloo Thambi 2', cursive;
        font-size: 18px;
        font-weight: 400;
        background: transparent !important;
        border-radius: 0;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(57, 127, 231, 0.1) !important;
        color: #2a6bcf !important;
        border-radius: 8px;
        transform: translateX(5px);
        transition: all 0.2s ease;
    }

    /* Header icons in white card */
    .header-icons {
        flex-direction: row;
        margin-top: 0;
        gap: 8px;
        background-color: #FFFFFF;
        padding: 8px 12px;
        border-radius: 10px;
    }

    .header-icon {
        background-color: transparent;
        color: #397FE7;
        width: 36px;
        height: 36px;
    }

    .header-icon:hover {
        background-color: rgba(57, 127, 231, 0.1);
        color: #397FE7;
    }

    .cart-count {
        background-color: #89BE30;
    }

    /* Hide account icon on mobile */
    .header-icons .account-link {
        display: none;
    }

    .lang-switch {
        background-color: transparent;
        padding: 0;
        gap: 0;
    }

    .lang-btn {
        padding: 4px 6px;
        font-size: 12px;
        color: #397FE7;
        background: transparent;
    }

    .lang-btn.active {
        background-color: transparent;
        color: #397FE7;
        font-weight: 600;
    }

    /* Mobile Overlay */
    .nav-overlay {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
    }

    h1.hero-title {
        font-size: 32px !important;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Grid */
    .col-2,
    .col-3,
    .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Uniform Sections - Tablet */
    .about-section,
    .ideas-section {
        padding: 60px 0;
        min-height: auto;
    }

    .about-section h2,
    .ideas-section h2,
    .products-section .section-title h2,
    .testimonials .section-title h2,
    .awards-section .section-title h2,
    .newsletter h2 {
        font-size: 30px;
    }

    .about-section p,
    .ideas-section p,
    .newsletter p,
    .testimonials .testimonial-text {
        font-size: 16px;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col p,
    .footer-links a {
        font-size: 15px;
    }

    /* Awards Section - Tablet */
    .awards-logos {
        gap: 50px;
    }

    .award-item img {
        height: 45px;
    }

    /* Page Hero */
    .page-hero {
        min-height: 35vh;
    }

    .page-hero .hero-title {
        font-size: 2rem;
    }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) {
    :root {
        --container-max: 540px;
        --spacing-xl: 40px;
        --spacing-xxl: 40px;
    }

    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Header */
    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    /* Page Hero - Mobile */
    .page-hero {
        min-height: 30vh;
        aspect-ratio: unset;
        background-size: cover !important;
        padding-top: 80px;
    }

    .page-hero .hero-title {
        font-size: 1.75rem !important;
        white-space: normal !important;
        line-height: 1.3;
    }

    .page-hero .hero-subtitle {
        font-size: 14px;
        white-space: normal !important;
    }

    .page-hero .hero-overlay {
        display: block;
    }

    /* Vision Section - Mobile */
    .vision-section {
        padding: 50px 0;
    }

    .vision-section .row {
        flex-direction: column;
        gap: 25px;
    }

    .vision-section .col-2 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .vision-section h2 {
        font-size: 24px;
    }

    .vision-section .subtitle {
        font-size: 15px;
    }

    .vision-section img {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 15px;
    }

    /* Values Section - Mobile (stack cards) */
    .values-section {
        padding: 50px 0;
    }

    .values-section > .container > div {
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
    }

    .values-section > .container > div > div {
        flex: 0 0 100% !important;
        max-width: 320px !important;
        width: 100% !important;
    }

    .values-section .card {
        padding: 25px 20px !important;
    }

    .values-section h3 {
        font-size: 1.1rem !important;
    }

    .values-section p {
        font-size: 0.85rem !important;
    }

    /* FAQ Section - Mobile */
    .faq-section {
        padding: 50px 0;
    }

    .faq-section .section-title h2 {
        font-size: 22px;
    }

    .faq-section .accordion {
        max-width: 100% !important;
        margin: 0 !important;
    }

    .accordion-header {
        padding: 15px !important;
        font-size: 0.95rem !important;
    }

    .accordion-body {
        padding: 0 15px 15px !important;
        font-size: 0.9rem;
    }

    /* Products Section in Mission Page - Mobile */
    .products-section.bg-light {
        padding: 50px 0;
    }

    .products-section.bg-light .section-title h2 {
        font-size: 22px;
    }

    /* Shop Products Section - Mobile */
    .shop-products {
        padding: 40px 0;
    }

    /* Hero */
    .hero:not(.page-hero) {
        min-height: 85vh;
        aspect-ratio: unset !important;
        background-image: url('../hero_mobile.webp') !important;
        background-size: cover !important;
        background-position: center !important;
    }

    h1.hero-title {
        font-size: 26px !important;
        white-space: nowrap;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 35px;
        white-space: nowrap;
    }

    .hero-cta {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .hero-cta .btn {
        width: auto;
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-cta .btn-green {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Sections - Mobile */
    .about-section,
    .ideas-section {
        padding: 60px 0;
    }

    .about-section .row {
        flex-direction: column;
        gap: 30px;
    }

    .ideas-section .row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .about-section h2,
    .ideas-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }

    .about-section p,
    .ideas-section p {
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 20px;
    }

    .about-section .col-2,
    .ideas-section .col-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-section .btn,
    .ideas-section .btn {
        display: inline-block;
        margin: 25px 0 0;
        text-align: center;
        padding: 12px 28px;
        font-size: 14px;
    }

    .about-section img,
    .ideas-section img {
        margin-top: 20px;
        width: 100%;
        max-width: 350px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* Products Section - Mobile */
    .products-section {
        padding: 60px 0;
    }

    .products-section .section-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .products-section .section-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .products-section .section-title p {
        font-size: 14px;
    }

    .products-row {
        gap: 40px;
    }

    .product-card .card-body {
        padding: 25px 20px;
    }

    .product-card .card-title {
        margin-bottom: 10px;
    }

    .product-card .card-text {
        margin-bottom: 15px;
    }

    .product-card .card-price {
        margin-bottom: 20px;
    }

    .product-card .d-flex {
        flex-direction: column;
        gap: 12px;
    }

    .product-card .btn {
        width: 100%;
    }

    /* Testimonials - Mobile */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials .section-title {
        margin-bottom: 25px;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* Awards - Mobile */
    .awards-section {
        padding: 50px 0;
    }

    .awards-section .section-title h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    /* Newsletter - Mobile */
    .newsletter {
        padding: 60px 0;
    }

    .newsletter h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .newsletter p {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .newsletter-form {
        padding: 0 10px;
        gap: 12px;
    }

    .newsletter-form .form-control {
        padding: 12px 16px;
        font-size: 14px;
    }

    .newsletter-form .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Footer - Mobile */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }

    .footer-col p {
        line-height: 1.8;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 15px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 25px;
        gap: 15px;
    }

    /* Grid */
    .row {
        margin: 0;
    }

    .col,
    .col-2,
    .col-3,
    .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Cards */
    .card-body {
        padding: var(--spacing-sm);
    }

    .product-card .card-body {
        padding: var(--spacing-md);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    /* Uniform Sections - Mobile */
    .about-section,
    .ideas-section {
        padding: 50px 0;
    }

    .about-section h2,
    .ideas-section h2,
    .products-section .section-title h2,
    .testimonials .section-title h2,
    .awards-section .section-title h2,
    .newsletter h2 {
        font-size: 26px;
    }

    .about-section p,
    .ideas-section p,
    .newsletter p,
    .testimonials .testimonial-text {
        font-size: 15px;
    }

    .products-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .product-col {
        width: 100%;
        max-width: 400px;
    }

    .products-section .card-title {
        font-size: 20px;
    }

    .products-section .card-text {
        font-size: 14px;
    }

    .products-section .card-price {
        font-size: 22px;
    }

    .testimonials .testimonial-author {
        font-size: 15px;
    }

    .testimonials .testimonial-role {
        font-size: 13px;
    }

    .footer-col h4 {
        font-size: 17px;
    }

    .footer-col p,
    .footer-links a {
        font-size: 14px;
    }

    /* Awards Section - Mobile */
    .awards-logos {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }

    .award-item img {
        height: 40px;
    }

    /* Forms */
    .form-control {
        height: 48px;
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Tabs */
    .tab-list {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    /* Cart Table */
    .cart-table {
        display: block;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: block;
    }

    .cart-table tr {
        display: flex;
        flex-wrap: wrap;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--color-border);
        margin-bottom: var(--spacing-sm);
        background-color: var(--color-background-light);
        border-radius: var(--radius-medium);
    }

    .cart-table td {
        display: flex;
        align-items: center;
        padding: var(--spacing-xs);
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: var(--spacing-xs);
    }

    /* Checkout Grid */
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        order: -1;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    :root {
        --container-padding: 20px;
        --spacing-lg: 24px;
        --spacing-xl: 32px;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Header */
    .header-inner {
        padding: var(--spacing-xs) 10px;
    }

    .logo img {
        height: 35px;
    }

    .logo-text {
        display: none;
    }

    /* Nav */
    .nav {
        width: 160px;
    }

    .nav-link {
        font-size: 16px;
        padding: 8px 5px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .header-icons {
        padding: 6px 10px;
    }

    /* Hero */
    .hero:not(.page-hero) {
        min-height: 80vh;
        padding: 100px 20px 50px;
        aspect-ratio: unset !important;
        background-image: url('../hero_mobile.webp') !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-content {
        padding: 20px;
    }

    h1.hero-title {
        font-size: 20px !important;
        white-space: nowrap;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 12px;
        padding: 0 10px;
        margin-bottom: 30px;
        white-space: nowrap;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
    }

    .hero-cta .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-cta .btn-green {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Page Hero - Small Mobile */
    .page-hero {
        min-height: 25vh;
        aspect-ratio: unset;
        background-size: cover !important;
        padding-top: 70px;
    }

    .page-hero .hero-title {
        font-size: 1.4rem !important;
        white-space: normal !important;
        line-height: 1.3;
    }

    .page-hero .hero-subtitle {
        font-size: 13px;
        white-space: normal !important;
    }

    .page-hero .hero-overlay {
        display: block;
    }

    /* Vision Section - Small Mobile */
    .vision-section {
        padding: 40px 0;
    }

    .vision-section h2 {
        font-size: 22px;
    }

    .vision-section .subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .vision-section img {
        max-width: 280px;
    }

    /* Values Section - Small Mobile */
    .values-section {
        padding: 40px 0;
    }

    .values-section .section-title h2 {
        font-size: 22px;
    }

    .values-section > .container > div > div {
        max-width: 280px !important;
    }

    .values-section .card {
        padding: 20px 15px !important;
    }

    .values-section h3 {
        font-size: 1rem !important;
    }

    .values-section p {
        font-size: 0.8rem !important;
        line-height: 1.5;
    }

    .values-section .card > div:first-child {
        width: 50px !important;
        height: 50px !important;
    }

    .values-section .card svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* FAQ Section - Small Mobile */
    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title h2 {
        font-size: 20px;
    }

    .accordion-header {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }

    .accordion-body {
        padding: 0 12px 12px !important;
        font-size: 0.85rem;
    }

    .accordion-body p {
        line-height: 1.6;
    }

    /* Products Section - Small Mobile */
    .products-section.bg-light {
        padding: 40px 0;
    }

    .products-section.bg-light .section-title h2 {
        font-size: 20px;
    }

    .products-section.bg-light .products-row {
        gap: 25px;
    }

    .products-section.bg-light .product-col {
        max-width: 280px;
    }

    /* Shop Page - Small Mobile */
    .shop-products {
        padding: 30px 0;
    }

    .shop-products .products-row {
        gap: 25px;
    }

    .shop-products .product-col {
        max-width: 300px;
    }

    /* Sections - Small Mobile */
    .about-section,
    .ideas-section {
        padding: 50px 0;
    }

    .about-section .row {
        flex-direction: column;
        gap: 25px;
    }

    .ideas-section .row {
        flex-direction: column-reverse;
        gap: 25px;
    }

    .about-section h2,
    .ideas-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .about-section p,
    .ideas-section p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-section .btn {
        margin-top: 20px;
        padding: 11px 24px;
        font-size: 13px;
    }

    .about-section img,
    .ideas-section img {
        max-width: 300px;
        margin-top: 15px;
    }

    /* Products Section - Small Mobile */
    .products-section {
        padding: 50px 0;
    }

    .products-section .section-title h2 {
        font-size: 22px;
    }

    .products-section .section-title p {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .products-row {
        gap: 35px;
    }

    .product-col {
        max-width: 320px;
    }

    .products-section .card-title {
        font-size: 18px;
    }

    .products-section .card-text {
        font-size: 13px;
    }

    .products-section .card-price {
        font-size: 20px;
    }

    /* Testimonials - Small Mobile */
    .testimonials {
        padding: 50px 0;
    }

    .testimonials .section-title h2 {
        font-size: 22px;
    }

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

    .testimonial-text {
        font-size: 14px;
    }

    /* Awards - Small Mobile */
    .awards-section {
        padding: 40px 0;
    }

    .awards-section .section-title h2 {
        font-size: 22px;
    }

    .awards-logos {
        gap: 25px;
        padding: 0 15px;
    }

    .award-item img {
        height: 35px;
    }

    /* Newsletter - Small Mobile */
    .newsletter {
        padding: 50px 0;
    }

    .newsletter h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .newsletter p {
        font-size: 13px;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .newsletter-form {
        padding: 0 15px;
        gap: 10px;
    }

    .newsletter-form .form-control {
        padding: 10px 14px;
        font-size: 13px;
    }

    .newsletter-form .btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    /* Footer - Small Mobile */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-col p {
        font-size: 13px;
        line-height: 1.7;
        padding: 0;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 25px;
    }

    .footer-bottom p {
        font-size: 12px;
        text-align: left;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    /* Cards */
    .card {
        border-radius: var(--radius-medium);
    }

    .product-card .card-title {
        font-size: 1.25rem;
    }

    .card-price {
        font-size: 1.25rem;
    }

    /* Quantity Selector */
    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .quantity-btn {
        flex: 1;
        max-width: 60px;
    }

    .quantity-input {
        flex: 1;
        max-width: 80px;
    }

    /* Accordion */
    .accordion-header {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }

    /* Alert */
    .alert {
        flex-direction: column;
        text-align: center;
    }

    /* Toast */
    .toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    /* Section Padding */
    section {
        padding: var(--spacing-xl) 0;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    /* Product Page */
    .product-info {
        text-align: center;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.75rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }
}

/* Product Page - Responsive */
@media (max-width: 991px) {
    .product-section .row {
        flex-direction: column;
    }

    .product-section .col-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-gallery {
        position: relative !important;
        top: auto !important;
        margin-bottom: 30px;
    }

    .product-info {
        padding-left: 0 !important;
    }
}

@media (max-width: 575px) {
    .product-section {
        padding-top: 90px !important;
    }

    .product-title {
        font-size: 1.5rem !important;
    }

    .product-price {
        font-size: 1.25rem !important;
    }

    .product-description {
        font-size: 1rem !important;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .product-features {
        padding: 20px !important;
    }
}

/* Contact Page - Responsive */
@media (max-width: 767px) {
    .contact-section .row {
        flex-direction: column;
        gap: 30px;
    }

    .contact-section .col-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Cart Page - Responsive */
@media (max-width: 767px) {
    .cart-section {
        padding-top: 100px;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cart-item-image {
        margin: 0 auto;
    }
}

/* Checkout Page - Responsive */
@media (max-width: 991px) {
    .checkout-grid {
        grid-template-columns: 1fr !important;
    }

    .order-summary {
        order: -1;
    }
}

/* FAQ Page - Responsive */
@media (max-width: 767px) {
    .faq-page .accordion {
        max-width: 100%;
    }
}

/* Account Page - Responsive */
@media (max-width: 767px) {
    .account-section {
        padding-top: 100px;
    }

    .account-section .row {
        flex-direction: column;
        gap: 30px;
    }

    .account-section .col-2,
    .account-section .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav,
    .newsletter,
    .btn,
    .toast {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    section {
        padding: 20pt 0;
        page-break-inside: avoid;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode Support (optional - can be enabled later) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    :root {
        --color-background-light: #1A1B32;
        --color-white: #252640;
        --color-text: #E0E0E0;
        --color-text-light: #A0A0A0;
        --color-border: #3A3B52;
    }
    */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #0055CC;
        --color-text: #000000;
        --color-text-light: #333333;
        --shadow-light: 0 0 0 2px #000;
    }

    .btn {
        border: 2px solid currentColor;
    }

    .form-control {
        border-width: 2px;
    }
}
