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

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


header {
    background-color: #2c3e50;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}


.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}


@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
}

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

nav ul li {
    margin-left: 0;
}

nav ul li a {
    text-decoration: none;
    color: #ecf0f1;
    font-weight: 500;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}


.hero {
    position: relative;
    height: 80vh;
    margin-top: 0;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
    max-width: 800px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
    max-width: 600px;
    font-weight: 600;
}

.short-description {
    font-size: 0.95rem;
    color: #555;
    margin-top: 5px;
}
@media (max-width: 992px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        max-width: 80%;
    }

    .hero-content p {
        font-size: 1.1rem;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

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


@media (max-width: 768px) {
    main {
        padding-top: 60px; 
    }
    
   
    .hero, .breadcrumbs {
        margin-top: 0;
    }
}

/* Collection Sections */
.collection {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.collection h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.collection h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    padding: 1.2rem 1.5rem 0.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
}

.price {
    padding: 0 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.product-details {
    padding: 1.5rem;
    background: #f8f9fa;
    margin-top: auto;
}

.product-details p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;

}
.product-details .cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

.product-details .cta-button:hover {
    background-color: #2980b9;
}

/* Detailed Description Section */
.detailed-description {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    margin: 3rem 0;
    position: relative;
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.description-section {
    margin-bottom: 4rem;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.description-section:last-child {
    margin-bottom: 1rem;
}

.description-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 1rem;
    display: inline-block;
}

.description-section h3 {
    color: #34495e;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    border-left: 4px solid #e74c3c;
    padding-left: 15px;
}

.description-section p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* About Section */
.about {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

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

.about-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 2rem;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about {
        padding: 3rem 5%;
    }

    .about h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 2.5rem 5%;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2rem 5%;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about-card {
        padding: 1.2rem;
    }

    .about-card h3 {
        font-size: 1.2rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }
}


@media (hover: none) {
    .about-card:hover {
        transform: none;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    position: relative;
}

.contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #3498db;
    margin: 15px auto 0;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact input,
.contact textarea {
    padding: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
}

.contact textarea {
    height: 180px;
    resize: vertical;
}

.contact button {
    padding: 1.2rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

.contact button:hover {
    background-color: #2980b9;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #ff6b6b;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

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

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


.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background-color: #ff6b6b;
    transform: translateY(-4px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.social-links .fab {
    font-size: 1.4rem;
}


.footer-section p i {
    margin-right: 0.8rem;
    color: #ff6b6b;
    width: 20px;
    text-align: center;
}


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

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        text-align: center;
        gap: 1rem;
    }

    .footer-section {
        flex: 1 1 30%;
        min-width: 150px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

/* Further mobile optimization for very small screens */
@media (max-width: 480px) {
    .footer-section {
        flex: 1 1 100%;
        margin-bottom: 1.5rem;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 992px) {
    /* Header & Navigation */
    header {
        padding: 0.8rem 5%;
    }

    nav {
        padding: 0.8rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav ul li {
        margin-left: 1.5rem;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 5%;
        height: auto;
        min-height: 60vh;
    }

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

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

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card img {
        height: 250px;
    }

    /* About Section */
    .about-content {
        gap: 2rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

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

@media (max-width: 768px) {
    /* Header & Navigation */
    header {
        position: fixed;
        width: 100%;
    }

    nav {
        padding: 1rem 5%;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-right: 0;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 0.8rem;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Menu overlay with improved opacity */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
        z-index: 999;
        backdrop-filter: blur(2px);
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Fix for hero section on mobile to account for fixed header */
    .hero {
        margin-top: 60px;
    }
    
    /* Breadcrumbs adjustment for fixed header */
    .breadcrumbs {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    /* Header & Navigation */
    .logo {
        font-size: 1.3rem;
    }

    nav ul {
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 0.5rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card img {
        height: 200px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1rem;
    }

    /* About Section */
    .about-card {
        padding: 1rem;
    }

    .about-card h3 {
        font-size: 1.2rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 2rem 5% 1rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .social-links i {
        font-size: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .product-card:hover {
        transform: none;
    }

    .product-card img:hover {
        transform: none;
    }

    .about-card:hover {
        transform: none;
    }

    .social-links a:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    header, footer, .social-links {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero, .product-grid, .about-content {
        break-inside: avoid;
    }
}

/* Add fade-in-up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product cards, initially hidden */
.product-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation trigger class */
.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}


.product-card:nth-child(1) {
    transition-delay: 0.1s;
}

.product-card:nth-child(2) {
    transition-delay: 0.3s;
}

.product-card:nth-child(3) {
    transition-delay: 0.5s;
}

.description-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animation trigger class */
.description-section.visible {
    opacity: 1;
    transform: translateY(0);
}


.description-section:nth-child(1) {
    transition-delay: 0.2s;
}

.description-section:nth-child(2) {
    transition-delay: 0.4s;
}

.description-section:nth-child(3) {
    transition-delay: 0.6s;
}

.description-section:nth-child(4) {
    transition-delay: 0.8s;
}

.description-section:nth-child(5) {
    transition-delay: 1s;
}

.description-section:nth-child(6) {
    transition-delay: 1.2s;
}

/* About cards, initially hidden */
.about-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animation trigger class */
.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for about cards */
.about-card:nth-child(1) {
    transition-delay: 0.2s;
}

.about-card:nth-child(2) {
    transition-delay: 0.4s;
}

.about-card:nth-child(3) {
    transition-delay: 0.6s;
}

/* Hero animations */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 1.2s ease-out;
}

/* Contact form animation */
.contact {
    animation: fadeInUp 1s ease-out;
}

/* Heading animations */
.collection h2 {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.about h2 {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background-color: #2980b9;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.arrow-up {
    font-size: 1.2rem;
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover .arrow-up {
    transform: translateY(-3px);
}

/* Animation for scroll button */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(5px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

/* Apply the animation */
.scroll-to-top-btn.animated {
    animation: bounceIn 0.8s ease forwards;
}

/* Timeline Section */
.timeline {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.timeline h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-size: 2.2rem;
    position: relative;
}

.timeline h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #3498db;
    margin: 15px auto 0;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #3498db;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #3498db;
    border-radius: 50%;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content h3 {
    color: #3498db;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 5rem 5%;
    background-color: #fff;
}

.team h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-size: 2.2rem;
    position: relative;
}

.team h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #3498db;
    margin: 15px auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.team-member .role {
    padding: 0 1.5rem 0.5rem;
    color: #3498db;
    font-weight: bold;
    font-size: 1rem;
}

.team-member p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 5%;
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-top: 80px;
    text-align: center;
}

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.breadcrumb-description {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.breadcrumb-description p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    padding: 0.25rem 0.5rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #999;
}

.breadcrumbs a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.breadcrumbs .current {
    color: #555;
    font-weight: 500;
}

/* Responsive Breadcrumbs */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.8rem 5%;
        margin-top: 70px;
    }
    
    .breadcrumbs li {
        font-size: 0.85rem;
    }
    
    .breadcrumb-description {
        margin-top: 0.8rem;
        gap: 0.8rem;
    }
    
    .breadcrumb-description p {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        padding: 0.6rem 5%;
    }
    
    .breadcrumbs li {
        font-size: 0.8rem;
    }
    
    .breadcrumb-description {
        margin-top: 0.6rem;
        gap: 0.5rem;
    }
    
    .breadcrumb-description p {
        font-size: 0.75rem;
        padding: 0.15rem 0.3rem;
        white-space: nowrap;
    }
}


.mobile-menu-toggle {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex; 
        margin-right: 10px;
    }
    
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 0.8rem;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
   
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
        z-index: 999;
        backdrop-filter: blur(2px);
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    .hero {
        margin-top: 60px;
    }
    
  
    .breadcrumbs {
        margin-top: 60px;
    }
}



nav ul li a.active {
    color: #fff;
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3498db;
}

/* Form responsiveness */
.contact form {
    max-width: 100%;
}

.contact input,
.contact textarea,
.contact button {
    width: 100%;
    transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}


@media (hover: none) {
    .hero-image img:hover {
        transform: none;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    .cta-button:hover {
        background-color: #3498db;
        transform: none;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .team-member:hover {
        transform: none;
    }
    
    .scroll-to-top-btn:hover {
        transform: none;
    }
    
    .scroll-to-top-btn:hover .arrow-up {
        transform: none;
    }
}

/* Image responsiveness */
img {
    max-width: 100%;
    height: auto;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Print styles */
@media print {
    header, footer, .breadcrumbs, .scroll-to-top-btn, .mobile-menu-toggle, .menu-overlay {
        display: none !important;
    }
    
    body {
        background-color: #fff;
        color: #000;
    }
    
    .hero, .collection, .about, .timeline, .team {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
}


@media (max-width: 992px) {
    .wolf-coats-section {
        padding: 3rem 5%;
    }

    .wolf-coats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .wolf-coat-card {
        padding: 1.5rem;
    }

    .wolf-coat-card img {
        height: 280px;
    }

    .wolf-coat-card h3 {
        font-size: 1.4rem;
    }

    .wolf-coat-card .price {
        font-size: 1.2rem;
    }

    .wolf-coat-card .description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .wolf-coats-section {
        padding: 2.5rem 5%;
    }

    .wolf-coats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .wolf-coat-card {
        padding: 1.2rem;
    }

    .wolf-coat-card img {
        height: 250px;
    }

    .wolf-coat-card h3 {
        font-size: 1.3rem;
    }

    .wolf-coat-card .price {
        font-size: 1.1rem;
    }

    .wolf-coat-card .description {
        font-size: 0.95rem;
    }

    .view-details-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .wolf-coats-section {
        padding: 2rem 5%;
    }

    .wolf-coat-card {
        padding: 1rem;
    }

    .wolf-coat-card img {
        height: 220px;
    }

    .wolf-coat-card h3 {
        font-size: 1.2rem;
    }

    .wolf-coat-card .price {
        font-size: 1rem;
    }

    .wolf-coat-card .description {
        font-size: 0.9rem;
    }

    .view-details-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* Socks Page Responsive Styles */
@media (max-width: 992px) {
    .socks-section {
        padding: 3rem 5%;
    }

    .socks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .sock-card {
        padding: 1.5rem;
    }

    .sock-card img {
        height: 220px;
    }

    .sock-card h3 {
        font-size: 1.4rem;
    }

    .sock-card .price {
        font-size: 1.2rem;
    }

    .sock-card .description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .socks-section {
        padding: 2.5rem 5%;
    }

    .socks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sock-card {
        padding: 1.2rem;
    }

    .sock-card img {
        height: 200px;
    }

    .sock-card h3 {
        font-size: 1.3rem;
    }

    .sock-card .price {
        font-size: 1.1rem;
    }

    .sock-card .description {
        font-size: 0.95rem;
    }

    .buy-now-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .socks-section {
        padding: 2rem 5%;
    }

    .socks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .sock-card {
        padding: 1rem;
    }

    .sock-card img {
        height: 180px;
    }

    .sock-card h3 {
        font-size: 1.2rem;
    }

    .sock-card .price {
        font-size: 1rem;
    }

    .sock-card .description {
        font-size: 0.9rem;
    }

    .buy-now-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}


@media (hover: none) {
    .wolf-coat-card:hover,
    .sock-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .wolf-coat-card img:hover,
    .sock-card img:hover {
        transform: none;
    }

    .view-details-btn:hover,
    .buy-now-btn:hover {
        transform: none;
    }
}


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

.hero-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    line-height: 1.7;
    margin-bottom: 0;
    color: #fffbfb;
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
}

.hero-image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.section-title {
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-size: 2rem;
    text-align: center;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 3px;
    background-color: #0078d4;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: #0078d4;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reverse-layout {
    flex-direction: row-reverse;
}

.team-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

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

.team-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member-info {
    padding: 1.75rem;
}

.team-member h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.team-member .role {
    color: #0078d4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-section {
    padding: 3rem 0;
    margin-bottom: 4rem;
}

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

.timeline-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: #e9ecef;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 2.5rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #0078d4;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background-color: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-top: 0;
    color: #0078d4;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-section {
        padding: 2.5rem 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .reverse-layout {
        flex-direction: column;
    }
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 30px;
        width: 2px;
        background: #ddd;
    }
    
    .timeline-item {
        position: relative;
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .timeline-dot {
        position: absolute;
        top: 0;
        width: 14px;
        height: 14px;
        background: #007bff;
        border-radius: 50%;
    }
    
   
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
    }
    
   
    @media (max-width: 768px) {
        .timeline::before {
            left: 20px;
        }
    
        .timeline-item {
            padding-left: 50px;
        }
    
        .timeline-dot {
            left: 10px;
        }
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.about-column {
    display: flex;
    flex-direction: column;
}

.about-column .about-card {
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-column .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


.hero-overlay {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-overlay .hero-image {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

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

.hero-overlay .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-overlay .cta-button {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
}

.hero-overlay .cta-button:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
}

.collection-description {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}

.collection-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}


@media (max-width: 992px) {
    
    .hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        max-width: 80%;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        max-width: 80%;
    }
    
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
   
    .collection, .about, .detailed-description {
        padding: 3rem 5%;
    }
    
    /* About cards for tablets */
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Enhanced mobile navigation */
    .mobile-menu-toggle {
        display: flex;
        margin-right: 10px;
    }
    
    /* Improved hero section for mobile */
    .hero {
        height: 50vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        max-width: 90%;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        max-width: 90%;
        margin-bottom: 1rem;
    }
    
    /* Better product cards for mobile */
    .product-card {
        margin-bottom: 15px;
    }
    
    .product-card h3 {
        font-size: 1.1rem;
        padding: 0.8rem 1rem 0.3rem;
    }
    
    .price {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 0.8rem;
    }
    
    /* Mobile optimized section headers */
    .collection h2, .about h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    /* Breadcrumbs optimization */
    .breadcrumbs {
        padding: 0.6rem 5%;
        margin-top: 56px; /* Account for fixed header height */
    }
    
    .breadcrumbs li {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    /* Small mobile optimizations */
    .hero {
        height: 40vh;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    /* Single column product grid */
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Optimized section spacing */
    .collection, .about, .detailed-description {
        padding: 2rem 5%;
    }
    
    /* About cards optimization */
    .about-card {
        padding: 1rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .about-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Description section optimization */
    .description-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .description-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .description-section p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Footer optimization */
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p, .footer-section li {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    /* Extra small device optimization */
    .hero {
        height: 35vh;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .collection h2, .about h2 {
        font-size: 1.4rem;
    }
    
    .product-card h3 {
        font-size: 1rem;
    }
} 