/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header and Navigation */
.header {
    background-color: #000;
    box-shadow: 0 2px 5px rgba(138, 43, 226, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #6a0dad;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.call-button {
    background-color: #6a0dad;
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-button:hover {
    background-color: #5a0ca8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.3);
}

.call-button i {
    font-size: 1.2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-container {
    display: flex;
    align-items: center;
    gap: -5px;
    font-size: 2.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-logo .logo-container:hover {
    color: #6a0dad;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: bold;
}

.logo-cross {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container:hover .logo-cross {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(106, 13, 173, 0.5));
}

.nav-logo a {
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #6a0dad;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6a0dad;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #6a0dad;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #6a0dad 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    perspective: 2000px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    max-width: 900px;
    width: 98%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 25px 50px rgba(106, 13, 173, 0.7)) 
            drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 100px rgba(0, 0, 0, 1))
            drop-shadow(0 0 200px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s ease;
}

.floating-logo canvas {
    max-width: 100%;
    height: auto;
}

.floating-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 35px 70px rgba(106, 13, 173, 0.9)) 
            drop-shadow(0 20px 40px rgba(0, 0, 0, 1))
            drop-shadow(0 0 150px rgba(0, 0, 0, 1))
            drop-shadow(0 0 300px rgba(0, 0, 0, 0.9));
}

@keyframes continuousSpin {
    0% {
        transform: rotateX(10deg) rotateY(0deg) translateZ(100px);
    }
    100% {
        transform: rotateX(10deg) rotateY(360deg) translateZ(100px);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-products {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    height: 100%;
    perspective: 1000px;
}

.floating-product {
    position: relative;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.floating-product.left {
    animation-delay: 0s;
}

.floating-product.right {
    animation-delay: -3s;
}

.product-image {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 40px rgba(0, 0, 0, 0.4))
            drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease, filter 0.3s ease;
    transform: rotateY(5deg) rotateX(2deg);
}

/* Enlarge left hero hoodie relative to right pants */
.floating-product.left .product-image {
    width: 620px;
    height: 620px;
    object-fit: contain;
}

.floating-product.right .product-image {
    width: 500px;
    height: 500px;
    object-fit: contain;
    object-position: center;
}

.floating-product:hover .product-image {
    transform: rotateY(8deg) rotateX(5deg) scale(1.08);
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 60px rgba(0, 0, 0, 0.6))
            drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

/* Accessibly hide hero heading but keep for SEO and screen readers */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateY(5deg);
    }
    25% {
        transform: translateY(-30px) rotateY(8deg);
    }
    50% {
        transform: translateY(-15px) rotateY(2deg);
    }
    75% {
        transform: translateY(-25px) rotateY(6deg);
    }
}

/* Responsive design for products */
@media (max-width: 768px) {
    .hero-products {
        flex-direction: column;
        gap: 50px;
    }
    
    .product-image {
        width: 350px;
        height: 350px;
    }
    /* Override enlarged desktop hoodie size on mobile */
    .floating-product.left .product-image {
        width: 350px;
        height: 350px;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    background-color: #6a0dad;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    background-color: #5a0ca8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

/* About Section */
.about {
    background-color: #111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.about-image {
    text-align: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card-link:hover {
    color: inherit;
}

.floating-product a {
    display: block;
    width: 100%;
    height: 100%;
}

.floating-product a img {
    width: 100%;
    height: 100%;
}

.product-card {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #6a0dad;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
}

.coming-soon-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: white;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: bold;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10;
    letter-spacing: 0.5px;
    opacity: 0.85;
    width: 150%;
    text-align: center;
}

.product-card i {
    font-size: 3rem;
    color: #6a0dad;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.product-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6a0dad;
    margin-top: 1rem;
}

/* Hoodies Page Styles */
.hoodies-hero {
    padding: 140px 0 60px;
    min-height: 70vh;
}

.hoodies-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hoodies-hero p {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ccc;
}

.product-detail-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #6a0dad;
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
}

.product-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-detail-card:hover .product-detail-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #6a0dad;
    margin-bottom: 1rem;
}

.product-info p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features i {
    color: #6a0dad;
    font-size: 0.8rem;
}

.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #6a0dad;
}

.add-to-cart-btn {
    background-color: #6a0dad;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #5a0ca8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.3);
}

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

.bundle-card {
    background: linear-gradient(135deg, #6a0dad, #8a2be2);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.bundle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bundle-pricing {
    margin: 1.5rem 0;
}

.original-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.bundle-price {
    font-size: 2rem;
    font-weight: bold;
    margin-right: 1rem;
}

.savings {
    background-color: #ff4444;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.bundle-btn {
    background-color: white;
    color: #6a0dad;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bundle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    color: #6a0dad;
    font-weight: bold;
}

/* Blog Button in About Section */
.blog-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #6a0dad;
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.blog-button:hover {
    background-color: #5a0ca8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(106, 13, 173, 0.3);
}

.blog-button i {
    font-size: 1rem;
}

/* Blog Page Styles */
.blog-hero {
    padding: 140px 0 60px;
    min-height: 50vh;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.blog {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.blog .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    gap: 2rem;
}

.blog-post {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post.featured .blog-image {
    height: 300px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #6a0dad;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    font-size: 1.8rem;
    color: #6a0dad;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #6a0dad;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more-btn {
    display: inline-block;
    background-color: #6a0dad;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #5a0ca8;
    transform: translateY(-1px);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #111;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.sidebar-widget h3 {
    color: #6a0dad;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #6a0dad;
}

.category-list span {
    color: #888;
    font-size: 0.9rem;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 1rem;
}

.recent-posts a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-posts a:hover {
    color: #6a0dad;
}

.newsletter-signup {
    background: linear-gradient(135deg, #6a0dad, #8a2be2);
    color: white;
}

.newsletter-signup h3 {
    color: white;
}

.newsletter-signup p {
    color: #ddd;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form button {
    padding: 10px;
    background: white;
    color: #6a0dad;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog .container {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
}

/* Contact Section */
.contact {
    background-color: #111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6a0dad;
    width: 30px;
}

.contact-item p {
    font-size: 1.1rem;
    color: #ccc;
}

/* Contact Form */
.contact-form {
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.2);
    border: 1px solid #6a0dad;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #111;
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6a0dad;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-button {
    background-color: #6a0dad;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #5a0ca8;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid #6a0dad;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #6a0dad;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6a0dad;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #111;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #6a0dad;
}

.social-link:hover {
    background-color: #6a0dad;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #333;
    border-top: 5px solid #6a0dad;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(106, 13, 173, 0.2);
        padding: 2rem 0;
        border-top: 1px solid #6a0dad;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        margin-right: 50px;
    }

    .call-button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .floating-logo {
        max-width: 650px;
        height: 650px;
    }

    .floating-logo:hover {
        transform: scale(1.05);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 2rem;
    }

    /* Mobile logo scaling adjustments */
    .nav-logo .logo-container, .logo-text {
        font-size: 1.7rem;
    }
    .logo-cross {
        height: 55px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    .floating-product.left .product-image,
    .floating-product.right .product-image {
        width: 300px;
        height: 300px;
    }

    section {
        padding: 60px 0;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    /* Smaller handset logo refinement */
    .nav-logo .logo-container, .logo-text {
        font-size: 1.5rem;
    }
    .logo-cross {
        height: 48px;
    }
}
