/* ===========================
   COOKWARE PAGE STYLES
   =========================== */

/* Hero Section */
.cookware-hero {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    width: 100%;
}

.hero__text {
    color: white;
    text-align: center;
}

.hero__title {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color:#f5ede5;
}

.hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__cta {
    padding: 14px 40px;
    font-size: 1rem;
    text-transform: none;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.breadcrumb li:not(:last-child)::after {
    content: " / ";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section--light {
    background-color: #f9f7f5;
}

.section--beige {
    background-color: #f5ede5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section__title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
    text-align: center;
}

.section__description {
    font-size: 1.05rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Category Showcase Section */
.cookware-categories {
    margin-bottom: 20px;
}

.categories-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-showcase {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-showcase:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.category-showcase img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.category-showcase:hover img {
    transform: scale(1.08);
}

.category-info {
    padding: 25px;
    text-align: center;
}

.category-info h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.category-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn--ghost {
    background-color: transparent;
    color: #8b6f47;
    border: 2px solid #8b6f47;
    padding: 10px 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn--ghost:hover {
    background-color: #8b6f47;
    color: white;
}

/* Material Guide Cards */
.material-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.material-feature-card {
    background: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.material-feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.material-feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.material-feature-card__title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.material-feature-card__benefits {
    list-style: none;
    text-align: left;
}

.material-feature-card__benefits li {
    font-size: 0.9rem;
    color: #666;
    padding: 8px 0;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.material-feature-card__benefits li:last-child {
    border-bottom: none;
}

/* Featured Collection Section */
.featured-collection {
    background: white;
}

.featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.featured-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-content {
    padding: 20px 0;
}

.featured-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.featured-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.featured-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.featured-benefits li {
    font-size: 0.95rem;
    color: #2c2c2c;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.featured-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Technology Section */
.technology-section {
    margin: 60px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-item {
    text-align: center;
}

.tech-item__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #8b6f47;
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tech-item__title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.tech-item__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Care & Maintenance Section */
.care-section {
    background: white;
}

.care-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.care-content {
    max-width: 500px;
}

.care-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.care-content > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.care-tips {
    list-style: none;
    margin-bottom: 30px;
}

.care-tips li {
    font-size: 0.95rem;
    color: #666;
    padding: 12px 0;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.care-tips li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

.care-tips strong {
    color: #2c2c2c;
}

.care-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.care-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Professional Testimonials */
.professional-section {
    margin: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.testimonial-card__text {
    font-size: 1rem;
    color: #2c2c2c;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__footer {
    display: block;
    text-align: left;
}

.testimonial-card__author {
    display: block;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-style: normal;
}

.testimonial-card__title {
    display: block;
    font-size: 0.85rem;
    color: #999;
}

/* Call to Action Section */
.cta-section {
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cta-content {
    text-align: center;
    padding: 20px 0;
}

.cta-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cta-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 35px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 14px 40px;
    font-size: 1rem;
    text-transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-layout,
    .care-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .featured-title,
    .care-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .categories-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cookware-hero {
        height: 500px;
        margin-bottom: 40px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero__actions {
        gap: 10px;
    }

    .hero__cta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section {
        padding: 40px 0;
    }

    .categories-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-info {
        padding: 20px;
    }

    .material-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .material-feature-card {
        padding: 20px 15px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section__description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .featured-title,
    .care-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .breadcrumb ol {
        flex-direction: column;
        gap: 5px;
    }

    .breadcrumb li {
        font-size: 0.85rem;
    }

    .breadcrumb li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .cookware-hero {
        height: 400px;
        margin-bottom: 30px;
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__cta {
        width: 100%;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .breadcrumb ol {
        padding: 0 10px;
    }

    .categories-showcase {
        gap: 15px;
    }

    .category-showcase img {
        height: 180px;
    }

    .material-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .material-feature-card {
        padding: 15px 12px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-item__number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .featured-benefits li,
    .care-tips li {
        padding-left: 15px;
        font-size: 0.9rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .featured-title,
    .care-title {
        font-size: 1.3rem;
    }
}
