
        :root {
            --primary-red: #FF2B2B;
            --primary-yellow: #FFD700;
            --secondary-yellow: #FFF8DC;
            --dark-red: #D32F2F;
            --light-red: #FFEBEE;
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --medium-gray: #E0E0E0;
            --dark-gray: #424242;
            --text-dark: #212121;
            --text-light: #757575;
            --success: #4CAF50;
            --shadow: rgba(0, 0, 0, 0.1);
            --shadow-hover: rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--white) 100%);
            color: var(--text-dark);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Header */
        .header {
            background: var(--white);
            box-shadow: 0 2px 20px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary-red);
        }

        .header-top {
            background: var(--primary-red);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.9em;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-info {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .header-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .header-social {
            display: flex;
            gap: 15px;
        }

        .header-social a {
            color: var(--white);
            font-size: 1.1em;
            transition: transform 0.3s ease;
        }

        .header-social a:hover {
            transform: scale(1.2);
        }

        .header-main {
            padding: 20px 0;
        }

        .header-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img{
            width: 200px;
            height: auto;
        }

        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .header-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--primary-red);
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .header-btn:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px var(--shadow-hover);
        }

        .header-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .header-btn:hover::before {
            left: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--white);
            padding: 15px 0;
            border-bottom: 1px solid var(--medium-gray);
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
        }

        .breadcrumb-nav a {
            color: var(--primary-red);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-nav a:hover {
            color: var(--dark-red);
        }

        .breadcrumb-separator {
            color: var(--text-light);
            margin: 0 5px;
        }

        /* Back Button */
        .back-section {
            padding: 20px 0;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            box-shadow: 0 5px 15px var(--shadow);
            transition: all 0.3s ease;
            border: 2px solid var(--primary-red);
        }

        .back-button:hover {
            background: var(--primary-red);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow-hover);
        }

        /* Product Detail */
        .product-detail {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px var(--shadow);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .product-detail::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
        }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .product-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
        }

        .product-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-image:hover {
            transform: scale(1.05);
        }

        .product-badges {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .featured-badge {
            background: linear-gradient(45deg, var(--primary-red), var(--primary-yellow));
            color: var(--white);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .product-info {
            padding: 20px 0;
        }

        .product-title {
            font-size: 2.5em;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .product-price {
            font-size: 3em;
            color: var(--primary-red);
            font-weight: 700;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .price-label {
            font-size: 0.4em;
            color: var(--text-light);
            font-weight: 500;
        }

        .product-category-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-red);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 1.1em;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .product-description {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1em;
            padding: 25px;
            background: var(--light-gray);
            border-radius: 15px;
            border-left: 5px solid var(--primary-red);
        }

        .store-info {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 30px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .store-info::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }

        .store-info h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .store-name {
            font-size: 1.3em;
            font-weight: 600;
            margin-bottom: 20px;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            border-left: 5px solid var(--primary-yellow);
        }

        .buy-section {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .buy-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--primary-yellow);
            color: var(--text-dark);
            padding: 18px 35px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .buy-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .buy-button:hover::before {
            left: 100%;
        }

        .buy-button:hover {
            background: #FFE55C;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .favorite-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 18px 25px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .favorite-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Product Meta */
        .product-meta {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 30px;
        }

        .product-meta h3 {
            color: var(--primary-red);
            font-size: 1.5em;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .meta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .meta-item {
            background: var(--white);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s ease;
            border: 2px solid transparent;
        }

        .meta-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary-red);
        }

        .meta-item i {
            font-size: 2.5em;
            color: var(--primary-red);
            margin-bottom: 15px;
        }

        .meta-item strong {
            display: block;
            color: var(--text-dark);
            font-size: 1.1em;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .meta-item span {
            color: var(--text-light);
            font-size: 1em;
        }

        /* Related Products */
        .related-products {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px var(--shadow);
            margin-bottom: 40px;
        }

        .related-products h3 {
            color: var(--primary-red);
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .related-card {
            background: var(--light-gray);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px var(--shadow);
        }

        .related-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-red);
            box-shadow: 0 15px 40px var(--shadow-hover);
        }

        .related-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .related-card:hover .related-card-image {
            transform: scale(1.1);
        }

        .related-card-content {
            padding: 25px;
            background: var(--white);
        }

        .related-card h4 {
            color: var(--text-dark);
            margin-bottom: 15px;
            font-size: 1.2em;
            font-weight: 600;
        }

        .related-card .price {
            color: var(--primary-red);
            font-weight: 700;
            font-size: 1.4em;
        }

        
        /* Footer */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--primary-yellow);
            margin-bottom: 20px;
            font-size: 1.3em;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-yellow);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-red);
            color: var(--white);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary-yellow);
            color: var(--text-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-main .container {
                flex-direction: column;
                gap: 20px;
            }

            .header-actions {
                flex-direction: column;
                width: 100%;
            }

            .header-info {
                flex-direction: column;
                gap: 10px;
            }

            .product-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .product-title {
                font-size: 2em;
            }

            .product-price {
                font-size: 2.5em;
            }

            .meta-grid {
                grid-template-columns: 1fr;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .buy-section {
                flex-direction: column;
                align-items: stretch;
            }

            .buy-button, .favorite-button {
                text-align: center;
                justify-content: center;
            }

            .newsletter-content {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                width: 100%;
                min-width: auto;
            }

            .newsletter-form input {
                min-width: 0;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--white);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }


        /* Responsive Design - Mobile First Approach */

/* Extra Small devices (phones, 600px and down) */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .header-top {
        padding: 5px 0;
        font-size: 0.8em;
    }

    .header-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .header-info span {
        font-size: 0.9em;
    }

    .header-social {
        gap: 10px;
    }

    .header-main {
        padding: 15px 0;
    }

    .header-main .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        width: 150px;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .header-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .breadcrumb {
        padding: 10px 0;
    }

    .breadcrumb-nav {
        flex-wrap: wrap;
        gap: 5px;
        font-size: 0.9em;
    }

    .back-section {
        padding: 15px 0;
    }

    .back-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .product-detail {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .product-image {
        height: 250px;
    }

    .product-badges {
        top: 10px;
        right: 10px;
    }

    .featured-badge {
        padding: 8px 15px;
        font-size: 0.8em;
    }

    .product-info {
        padding: 10px 0;
    }

    .product-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .product-price {
        font-size: 2em;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .price-label {
        font-size: 0.5em;
    }

    .product-category-badge {
        padding: 10px 20px;
        font-size: 1em;
        margin-bottom: 20px;
    }

    .product-description {
        padding: 20px;
        font-size: 1em;
        margin-bottom: 20px;
    }

    .store-info {
        padding: 20px;
        margin-bottom: 20px;
    }

    .store-info h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .store-name {
        font-size: 1.1em;
        padding: 12px 20px;
        margin-bottom: 15px;
    }

    .buy-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .buy-button {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .favorite-button {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }

    .product-meta {
        padding: 20px;
        margin-bottom: 20px;
    }

    .product-meta h3 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .meta-item {
        padding: 20px;
    }

    .meta-item i {
        font-size: 2em;
    }

    .related-products {
        padding: 20px;
        margin-bottom: 20px;
    }

    .related-products h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-card-image {
        height: 180px;
    }

    .related-card-content {
        padding: 20px;
    }

    .related-card h4 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .related-card .price {
        font-size: 1.2em;
    }

    .newsletter-section {
        padding: 30px 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-info h3 {
        font-size: 1.5em;
        margin-bottom: 8px;
    }

    .newsletter-info p {
        font-size: 1em;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        min-width: auto;
        gap: 12px;
    }

    .newsletter-form input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        justify-content: center;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.9em;
    }
}

/* Small devices (portrait tablets and large phones, 600px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-top {
        font-size: 0.85em;
    }

    .header-info {
        flex-direction: column;
        gap: 10px;
    }

    .header-main .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo img {
        width: 180px;
    }

    .header-actions {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .header-btn {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .product-detail {
        padding: 30px;
        margin-bottom: 30px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image {
        height: 350px;
    }

    .product-title {
        font-size: 2em;
    }

    .product-price {
        font-size: 2.5em;
    }

    .meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .buy-section {
        flex-direction: column;
        align-items: stretch;
    }

    .buy-button, .favorite-button {
        text-align: center;
        justify-content: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .newsletter-form {
        width: 100%;
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Medium devices (landscape tablets, 768px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .container {
        max-width: 750px;
    }

    .header-info {
        gap: 20px;
    }

    .header-actions {
        gap: 15px;
    }

    .product-detail {
        padding: 35px;
    }

    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .product-image {
        height: 400px;
    }

    .product-title {
        font-size: 2.2em;
    }

    .product-price {
        font-size: 2.8em;
    }

    .meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .buy-section {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .newsletter-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .newsletter-form {
        min-width: 350px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (laptops/desktops, 992px to 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .container {
        max-width: 970px;
    }

    .header-info {
        gap: 25px;
    }

    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .product-image {
        height: 450px;
    }

    .meta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-form {
        min-width: 400px;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large devices (large laptops and desktops, 1200px and up) */
@media (min-width: 1201px) {
    .container {
        max-width: 1200px;
    }

    .header-info {
        gap: 30px;
    }

    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .product-image {
        height: 500px;
    }

    .meta-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .newsletter-form {
        min-width: 400px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Ultra Wide screens (1400px and up) */
@media (min-width: 1401px) {
    .container {
        max-width: 1400px;
    }

    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .product-image {
        height: 550px;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .header-main {
        padding: 10px 0;
    }

    .product-detail {
        padding: 20px;
    }

    .product-image {
        height: 300px;
    }

    .newsletter-section {
        padding: 30px 0;
    }

    .footer {
        padding: 30px 0 15px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .product-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .related-card-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header-top,
    .header-social,
    .header-actions,
    .back-button,
    .buy-section,
    .newsletter-section,
    .footer {
        display: none;
    }

    .product-detail {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 300px;
    }

    .related-products {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .product-title {
        color: black;
    }

    .product-price {
        color: black;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .featured-badge {
        animation: none;
    }

    .loading {
        animation: none;
    }
}


.iconLojas{
    width: 40px;
    height: auto;
    background-color: white;
    border-radius: 10px;
}

/* ==============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================== */

/* Extra Small devices (phones, 600px and down) */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    /* Header Mobile */
    .header-top {
        padding: 5px 0;
        font-size: 0.8em;
    }

    .header-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .header-info span {
        font-size: 0.9em;
    }

    .header-social {
        gap: 10px;
    }

    .header-main {
        padding: 15px 0;
    }

    .header-main .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        width: 150px;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .header-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9em;
    }

    /* Navigation Mobile */
    .breadcrumb {
        padding: 10px 0;
    }

    .breadcrumb-nav {
        flex-wrap: wrap;
        gap: 5px;
        font-size: 0.9em;
    }

    .back-section {
        padding: 15px 0;
    }

    .back-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    /* Product Detail Mobile */
    .product-detail {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .product-image {
        height: 250px;
    }

    .product-badges {
        top: 10px;
        right: 10px;
    }

    .featured-badge {
        padding: 8px 15px;
        font-size: 0.8em;
    }

    .product-info {
        padding: 10px 0;
    }

    .product-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .product-price {
        font-size: 2em;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .price-label {
        font-size: 0.5em;
    }

    .product-category-badge {
        padding: 10px 20px;
        font-size: 1em;
        margin-bottom: 20px;
    }

    .product-description {
        padding: 20px;
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* Store Info Mobile */
    .store-info {
        padding: 20px;
        margin-bottom: 20px;
    }

    .store-info h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .store-name {
        font-size: 1.1em;
        padding: 12px 20px;
        margin-bottom: 15px;
    }

    /* Buttons Mobile */
    .buy-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .buy-button {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .favorite-button {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }

    /* Product Meta Mobile */
    .product-meta {
        padding: 20px;
        margin-bottom: 20px;
    }

    .product-meta h3 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .meta-item {
        padding: 20px;
    }

    .meta-item i {
        font-size: 2em;
    }

    /* Related Products Mobile */
    .related-products {
        padding: 20px;
        margin-bottom: 20px;
    }

    .related-products h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-card-image {
        height: 180px;
    }

    .related-card-content {
        padding: 20px;
    }

    .related-card h4 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .related-card .price {
        font-size: 1.2em;
    }

    /* Newsletter Mobile */
    .newsletter-section {
        padding: 30px 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-info h3 {
        font-size: 1.5em;
        margin-bottom: 8px;
    }

    .newsletter-info p {
        font-size: 1em;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        min-width: auto;
        gap: 12px;
    }

    .newsletter-form input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        justify-content: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.9em;
    }

    .iconLojas {
        width: 30px;
    }
}

/* Small devices (portrait tablets and large phones, 600px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-top {
        font-size: 0.85em;
    }

    .header-info {
        flex-direction: column;
        gap: 10px;
    }

    .header-main .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo img {
        width: 180px;
    }

    .header-actions {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .header-btn {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .product-detail {
        padding: 30px;
        margin-bottom: 30px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image {
        height: 350px;
    }

    .product-title {
        font-size: 2em;
    }

    .product-price {
        font-size: 2.5em;
    }

    .meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .buy-section {
        flex-direction: column;
        align-items: stretch;
    }

    .buy-button, .favorite-button {
        text-align: center;
        justify-content: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .newsletter-form {
        width: 100%;
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .iconLojas {
        width: 35px;
    }
}

/* Medium devices (landscape tablets, 768px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .container {
        max-width: 750px;
    }

    .header-info {
        gap: 20px;
    }

    .header-actions {
        gap: 15px;
    }

    .product-detail {
        padding: 35px;
    }

    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .product-image {
        height: 400px;
    }

    .product-title {
        font-size: 2.2em;
    }

    .product-price {
        font-size: 2.8em;
    }

    .meta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .buy-section {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .newsletter-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .newsletter-form {
        min-width: 350px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (laptops/desktops, 992px to 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .container {
        max-width: 970px;
    }

    .header-info {
        gap: 25px;
    }

    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .product-image {
        height: 450px;
    }

    .meta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-form {
        min-width: 400px;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large devices (large laptops and desktops, 1200px and up) */
@media (min-width: 1201px) {
    .container {
        max-width: 1200px;
    }

    .header-info {
        gap: 30px;
    }

    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .product-image {
        height: 500px;
    }

    .meta-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .newsletter-form {
        min-width: 400px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Ultra Wide screens (1400px and up) */
@media (min-width: 1401px) {
    .container {
        max-width: 1400px;
    }

    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .product-image {
        height: 550px;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* ==============================================
   SPECIAL RESPONSIVE CONDITIONS
   ============================================== */

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .header-main {
        padding: 10px 0;
    }

    .product-detail {
        padding: 20px;
    }

    .product-image {
        height: 300px;
    }

    .newsletter-section {
        padding: 30px 0;
    }

    .footer {
        padding: 30px 0 15px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .product-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .related-card-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .iconLojas {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header-top,
    .header-social,
    .header-actions,
    .back-button,
    .buy-section,
    .newsletter-section,
    .footer {
        display: none;
    }

    .product-detail {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 300px;
    }

    .related-products {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .product-title {
        color: black;
    }

    .product-price {
        color: black;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .featured-badge {
        animation: none;
    }

    .loading {
        animation: none;
    }
}

/* ==============================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================== */

/* Fix for very small screens */
@media (max-width: 375px) {
    .product-title {
        font-size: 1.3em;
    }

    .product-price {
        font-size: 1.8em;
    }

    .buy-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .iconLojas {
        width: 25px;
    }
}

/* Tablet landscape specific fixes */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .meta-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logoFooter{
            width: 200px;
            height: auto;
        }


         .dev-credit a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: var(--font-weight-semibold);
            transition: color var(--transition-fast);
        }

        .jeffcode {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}