/* Sevebmutyruktr - Modern Home Goods E-Commerce Stylesheet */
/* Color Palette: Navy #0A2440, Beige #F5F2EA, Pine Green #234C38, Copper #C27E41 */

:root {
    --navy: #0A2440;
    --beige: #F5F2EA;
    --pine-green: #234C38;
    --copper: #C27E41;
    --white: #FFFFFF;
    --light-gray: #E8E5DF;
    --dark-gray: #2C2C2C;
    --text-color: #2C2C2C;
    --border-color: #D4D0C8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--beige);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    color: var(--pine-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--copper);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--pine-green) 100%);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--beige);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--beige);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo img,
.logo svg {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover img,
.logo:hover svg {
    transform: scale(1.1);
}

.logo-text {
    display: inline-block;
}

nav {
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav ul.mobile-menu-open {
    display: flex;
}

nav a {
    color: var(--beige);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 36, 64, 0.75), rgba(35, 76, 56, 0.75)), url('../images/general/hero-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .btn {
    margin: 0.5rem;
}

/* Parallax effect for desktop */
@media (min-width: 769px) {
    .hero {
        background-attachment: fixed;
    }
}

.hero::before {
    content: '❄';
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--beige);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--copper);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn:hover {
    background-color: var(--pine-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--beige);
    color: var(--beige);
}

.btn-secondary:hover {
    background-color: var(--beige);
    color: var(--navy);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--navy);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--copper), var(--pine-green));
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--copper);
}

.card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--navy);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide emoji placeholder when image is present */
.product-image:has(img)::before {
    display: none !important;
}

/* Show placeholder only when no image */
.product-image:not(:has(img))::before {
    content: '🪑';
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    min-height: 3rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--copper);
    font-weight: bold;
    margin: 1rem 0;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pine-green);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--pine-green) 100%);
    color: var(--beige);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--beige);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--beige);
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--copper);
}

.holiday-countdown {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 1rem 0;
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    min-width: 60px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--beige);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

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

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--copper);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--navy);
}

/* Cart Page */
.cart-item {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: var(--light-gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-image span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.1rem;
    color: var(--copper);
    font-weight: bold;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quantity-btn {
    background: var(--pine-green);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--copper);
}

.quantity-input {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

.cart-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-summary-row.total {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--navy);
    border-bottom: 2px solid var(--navy);
    margin-top: 1rem;
}

/* Blog Teaser */
.blog-teasers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-teaser {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-teaser:hover {
    transform: translateY(-5px);
}

.blog-teaser-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--pine-green), var(--copper));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

.blog-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-teaser-content {
    padding: 1.5rem;
}

.blog-teaser-title {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.blog-teaser-excerpt {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--copper);
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Holiday Decorations */
.holiday-accent {
    color: var(--copper);
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

/* Responsive Design */

/* Large Tablets (769px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .content-section {
        padding: 2rem;
    }
    
    /* Product detail page */
    .product-detail-container {
        gap: 2rem !important;
    }
    
    .product-image[style*="height: 500px"] {
        height: 450px !important;
    }
    
    /* Map iframe */
    iframe {
        height: 400px !important;
    }
}

/* Tablets (481px - 768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    /* Product detail page */
    .product-detail-container {
        display: flex !important;
        flex-direction: column;
        gap: 2rem !important;
    }
    
    .product-detail-container > div:first-child {
        width: 100%;
    }
    
    .product-detail-container > div:last-child {
        width: 100%;
    }
    
    .product-image[style*="height: 500px"] {
        height: 400px !important;
    }
    
    /* Map iframe for tablets */
    iframe {
        height: 400px !important;
    }
    
    /* Form adjustments */
    .form-group {
        margin-bottom: 1.25rem;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.mobile-menu-open {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        padding: 1rem 0;
    }

    nav a {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
        border-radius: 4px;
    }

    .cart-icon {
        order: 2;
    }

    .logo {
        font-size: 1.5rem;
        order: 1;
    }

    .logo img,
    .logo svg {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding: 4rem 1.5rem;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-teasers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cart-item-image {
        width: 100%;
        max-width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .quantity-control {
        justify-content: center;
    }

    .cookie-banner {
        padding: 1rem 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner p {
        min-width: auto;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner .btn {
        flex: 1;
        max-width: 200px;
    }

    .content-section {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .countdown-numbers {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 50px;
        padding: 0.5rem;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    h4 { font-size: 1.15rem; }

    p {
        font-size: 1rem;
    }
}

/* Mobile Devices (up to 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.3rem;
        gap: 0.5rem;
    }

    .logo img,
    .logo svg {
        width: 30px;
        height: 30px;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: 350px;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

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

    .product-image {
        height: 220px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .testimonials {
        gap: 1rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .blog-teasers {
        gap: 1.5rem;
    }

    .blog-teaser-image {
        height: 180px;
    }

    .blog-teaser-content {
        padding: 1.25rem;
    }

    .cart-item {
        padding: 1rem;
    }

    .cart-item-image {
        width: 100%;
        max-width: 150px;
        height: 150px;
    }

    .cart-item-title {
        font-size: 1.1rem;
    }

    .cart-item-price {
        font-size: 1rem;
    }

    .cart-summary {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.625rem;
        font-size: 0.95rem;
    }

    .content-section {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .content-section ul {
        margin-left: 1.5rem;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner p {
        font-size: 0.9rem;
    }

    .cookie-banner .btn {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 150px;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .countdown-numbers {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 45px;
        padding: 0.4rem 0.6rem;
    }

    .countdown-value {
        font-size: 1rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }

    p {
        font-size: 0.95rem;
    }

    /* Contact page map */
    iframe[src*="maps.google.com"] {
        height: 300px !important;
    }
    
    /* Map container */
    div[style*="height: 500px"] {
        height: 300px !important;
    }
    
    /* Product detail page - mobile specific */
    #product-title {
        font-size: 1.5rem !important;
    }
    
    #product-price {
        font-size: 1.5rem !important;
    }
    
    .content-section {
        padding: 1.25rem 1rem !important;
    }
    
    /* Button adjustments for mobile */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Add to cart button */
    .add-to-cart-btn {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1.1rem !important;
    }

    /* Product detail page */
    .product-detail-container {
        display: flex !important;
        flex-direction: column;
        gap: 2rem !important;
    }

    .product-detail-container > div:first-child {
        width: 100%;
    }

    .product-detail-container > div:last-child {
        width: 100%;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

