
:root {
    --primary-color: #80BA26;
    --footer-bg: #20304F;
    --announcement-bg: #80BA26;
    --body-bg: #FFFFFF;
    --hover-color: #20304F;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* Hero Section */
.westernboots-hero-section {
    background: 
        linear-gradient(rgba(32,48,79,0.6), rgba(32,48,79,0.6)), /* semi-transparent overlay */
        url('https://i.pinimg.com/1200x/1e/b0/bc/1eb0bc35dce2dcd1bacf1d100cc429fe.jpg') center/cover no-repeat; /* Replace with your image */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* Container should stay above overlay */
.westernboots-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Title */
.westernboots-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Hero Subtitle */
.westernboots-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* CTA Button */
.westernboots-cta-button {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    transition: var(--transition);
}

.westernboots-cta-button:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .westernboots-hero-title {
        font-size: 2.8rem;
    }
    .westernboots-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .westernboots-hero-title {
        font-size: 2.2rem;
    }
    .westernboots-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .westernboots-hero-title {
        font-size: 1.8rem;
    }
    .westernboots-hero-subtitle {
        font-size: 0.95rem;
    }
    .westernboots-cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* Featured Products Section */
.westernboots-featured-section {
    background-color: var(--body-bg);
    padding: 80px 0;
}

.westernboots-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.westernboots-section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.westernboots-product-card {
    background-color: var(--body-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.westernboots-product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(128, 186, 38, 0.15);
    transform: translateY(-8px);
}

.product-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.westernboots-product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.westernboots-product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.westernboots-product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.westernboots-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.westernboots-product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.westernboots-product-btn  {
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.westernboots-product-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}


/* About Section */
.westernboots-about-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.westernboots-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.westernboots-about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.westernboots-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.westernboots-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Testimonials Section */
.westernboots-testimonials-section {
    background-color: var(--body-bg);
    padding: 80px 0;
}

.westernboots-testimonial-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
}

.westernboots-testimonial-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 1.1rem;
    color: #ffc107;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.westernboots-testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.westernboots-testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}



/* ---------------------------------------- Cowboy Hats Page Styles Css Start-------------------------------- */



/* Hero Section */
.cowboyhats-hero-section {
    background: 
        linear-gradient(rgba(32,48,79,0.6), rgba(32,48,79,0.6)), 
        url('https://i.pinimg.com/1200x/6e/09/64/6e0964488884cead9c6a7ead472d6149.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

/* Content */
.cowboyhats-hero-content {
    z-index: 2;
}

.cowboyhats-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cowboyhats-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cowboyhats-hero-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    padding: 12px 40px;
    transition: var(--transition);
}

.cowboyhats-hero-btn:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(32, 48, 79, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cowboyhats-hero-title {
        font-size: 2.4rem;
    }
    .cowboyhats-hero-subtitle {
        font-size: 1rem;
    }
}

/* Product Showcase Section */
.cowboyhats-product-showcase {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cowboyhats-showcase-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cowboyhats-showcase-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.cowboyhats-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cowboyhats-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(32, 48, 79, 0.15);
}

.cowboyhats-product-image {
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.cowboyhats-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cowboyhats-product-card:hover .cowboyhats-product-image img {
    transform: scale(1.08);
}

.cowboyhats-product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cowboyhats-product-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cowboyhats-product-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1;
}

.cowboyhats-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cowboyhats-product-btn {
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.cowboyhats-product-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* About Section */
.cowboyhats-about-section {
    padding: 80px 0;
    background-color: white;
}

.cowboyhats-about-image {
    margin-bottom: 30px;
}

.cowboyhats-about-image img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.cowboyhats-about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cowboyhats-about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cowboyhats-about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cowboyhats-feature-item {
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.cowboyhats-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cowboyhats-feature-text {
    color: var(--text-light);
    font-size: 1rem;
}

/* Highlights Section */
.cowboyhats-highlights-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cowboyhats-highlights-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cowboyhats-highlights-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.cowboyhats-highlight-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.cowboyhats-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(32, 48, 79, 0.12);
}

.cowboyhats-highlight-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 3rem;
}

.cowboyhats-highlight-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cowboyhats-highlight-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.cowboyhats-testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.cowboyhats-testimonials-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cowboyhats-testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.cowboyhats-testimonial-card {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
}

.cowboyhats-testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(32, 48, 79, 0.12);
    transform: translateY(-3px);
}

.cowboyhats-testimonial-stars {
    margin-bottom: 20px;
}

.cowboyhats-star {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 4px;
}

.cowboyhats-testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.cowboyhats-testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cowboyhats-hero-title {
        font-size: 2.5rem;
    }

    .cowboyhats-showcase-title,
    .cowboyhats-about-title,
    .cowboyhats-highlights-title,
    .cowboyhats-testimonials-title,
    .cowboyhats-cta-title {
        font-size: 2.2rem;
    }

    .cowboyhats-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .cowboyhats-hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .cowboyhats-hero-title {
        font-size: 2rem;
    }

    .cowboyhats-hero-subtitle {
        font-size: 1rem;
    }

    .cowboyhats-showcase-title,
    .cowboyhats-about-title,
    .cowboyhats-highlights-title,
    .cowboyhats-testimonials-title,
    .cowboyhats-cta-title {
        font-size: 1.8rem;
    }

    .cowboyhats-product-showcase,
    .cowboyhats-about-section,
    .cowboyhats-highlights-section,
    .cowboyhats-testimonials-section,
    .cowboyhats-cta-section {
        padding: 60px 0;
    }

    .cowboyhats-about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .cowboyhats-hero-title {
        font-size: 1.5rem;
    }

    .cowboyhats-showcase-title,
    .cowboyhats-about-title,
    .cowboyhats-highlights-title,
    .cowboyhats-testimonials-title,
    .cowboyhats-cta-title {
        font-size: 1.5rem;
    }

    .cowboyhats-product-showcase,
    .cowboyhats-about-section,
    .cowboyhats-highlights-section,
    .cowboyhats-testimonials-section,
    .cowboyhats-cta-section {
        padding: 40px 0;
    }

    .cowboyhats-product-info {
        padding: 15px;
    }

    .cowboyhats-cta-buttons {
        gap: 10px;
    }

    .cowboyhats-cta-primary,
    .cowboyhats-cta-secondary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* ---------------------------------------- Cowboy Hats Page Styles Css End-------------------------------- */


/* ---------------------------------------- High Visibility Workwear Styles Css Start-------------------------------- */


/* Hero Section */
.highvisibility-hero-section {
    background:
        linear-gradient(rgba(32,48,79,0.6), rgba(32,48,79,0.6)), 
        url('https://i.pinimg.com/736x/84/40/c6/8440c63ef25787f4eda329a9f1ac3c42.jpg') 
        center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

/* Text Styling */
.highvisibility-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highvisibility-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button */
.highvisibility-hero-btn {
    background: var(--primary-color);
    color: var(--body-bg);
    border-color: var(--primary-color);
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.highvisibility-hero-btn:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(32,48,79,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .highvisibility-hero-title {
        font-size: 2.4rem;
    }
    .highvisibility-hero-subtitle {
        font-size: 1rem;
    }
}


/* Product Section */
.highvisibility-product-section {
    background-color: var(--body-bg);
    padding: 80px 0;
}

.highvisibility-product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highvisibility-product-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.highvisibility-product-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.highvisibility-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(128, 186, 38, 0.2);
    border-color: var(--primary-color);
}

.highvisibility-product-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highvisibility-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.highvisibility-product-card:hover .highvisibility-product-image-wrapper img {
    transform: scale(1.05);
}

.highvisibility-product-body {
    padding: 20px;
}

.highvisibility-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highvisibility-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highvisibility-product-description {
    font-size: 0.95rem;
    color: var(--text-light);
}

    .highvisibility-product-btn  {
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.highvisibility-product-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}


/* Features Section */
.highvisibility-features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.highvisibility-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highvisibility-features-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.highvisibility-feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.highvisibility-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128, 186, 38, 0.15);
}

.highvisibility-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highvisibility-feature-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.highvisibility-feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Importance Section */
.highvisibility-importance-section {
    background-color: var(--body-bg);
    padding: 80px 0;
}

.highvisibility-importance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highvisibility-importance-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.highvisibility-importance-list {
    list-style: none;
    padding: 0;
}

.highvisibility-importance-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
}

.highvisibility-importance-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Testimonials Section */
.highvisibility-testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.highvisibility-testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highvisibility-testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.highvisibility-testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.highvisibility-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(128, 186, 38, 0.15);
}

.highvisibility-testimonial-stars {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.highvisibility-testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.highvisibility-testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .highvisibility-hero-title {
        font-size: 2rem;
    }

    .highvisibility-hero-subtitle {
        font-size: 1rem;
    }

    .highvisibility-product-title,
    .highvisibility-features-title,
    .highvisibility-importance-title,
    .highvisibility-testimonials-title,
    .highvisibility-cta-title {
        font-size: 1.8rem;
    }

    .highvisibility-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .highvisibility-hero-title {
        font-size: 1.5rem;
    }

    .highvisibility-hero-subtitle {
        font-size: 0.9rem;
    }

    .highvisibility-product-card,
    .highvisibility-feature-card,
    .highvisibility-testimonial-card {
        margin-bottom: 20px;
    }
}

/* ---------------------------------------- High Visibility Workwear Styles Css End-------------------------------- */


/* ---------------------------------------- Rain Gear Page Styles Css Start-------------------------------- */


/* ============================================
   HERO SECTION
   ============================================ */
/* Rain Gear Hero Section */
.raingear-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;

    /* Background image with overlay */
    background: 
        linear-gradient(rgba(32,48,79,0.6), rgba(32,48,79,0.6)), /* dark overlay */
        url('https://i.pinimg.com/1200x/c2/78/d1/c278d19ba69d30d600441e514ad4e426.jpg') center/cover no-repeat;
}

/* Title */
.raingear-hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

/* Subtitle */
.raingear-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.raingear-hero-btn {
    background-color: var(--primary-color);
    color: var(--hover-color);
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.raingear-hero-btn:hover {
    background-color: #6fa018;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .raingear-hero-title {
        font-size: 2.4rem;
    }
    .raingear-hero-subtitle {
        font-size: 1rem;
    }
    .raingear-hero-btn {
        padding: 10px 30px;
        font-size: 1rem;
    }
}

/* ============================================
   PRODUCT SHOWCASE SECTION
   ============================================ */
.raingear-product-showcase {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.raingear-product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.raingear-product-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.raingear-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.raingear-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.raingear-product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.raingear-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.raingear-product-card:hover .raingear-product-image img {
    transform: scale(1.08);
}

.raingear-product-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.raingear-product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.raingear-product-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.raingear-product-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}
    .raingear-product-btn  {
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.raingear-product-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.raingear-features-section {
    padding: 80px 0;
    background-color: white;
}

.raingear-features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.raingear-feature-card {
    background: white;
    padding: 40px 24px;
    text-align: center;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.raingear-feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.raingear-feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.raingear-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.raingear-feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.raingear-why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.raingear-why-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.raingear-why-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.raingear-why-list {
    margin-top: 32px;
}

.raingear-why-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-dark);
}

.raingear-why-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.raingear-why-image {
    text-align: center;
}

.raingear-why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.raingear-testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.raingear-testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.raingear-testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.raingear-testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.raingear-testimonial-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 16px;
}

.raingear-testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.raingear-testimonial-author {
    display: flex;
    flex-direction: column;
}

.raingear-testimonial-author strong {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.raingear-testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .raingear-product-showcase,
    .raingear-features-section,
    .raingear-why-choose-section,
    .raingear-testimonials-section,
    .raingear-cta-section {
        padding: 60px 0;
    }

    .raingear-product-title,
    .raingear-features-title,
    .raingear-testimonials-title {
        font-size: 2rem;
    }

    .raingear-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .raingear-why-choose-section .row {
        flex-direction: column-reverse;
    }

    .raingear-footer-legal {
        justify-content: flex-start;
    }

    .raingear-footer-bottom .col-md-6:last-child {
        margin-top: 16px;
    }
}



@media (prefers-reduced-motion: no-preference) {
    .raingear-hero-btn,
    .raingear-cta-btn {
        position: relative;
        overflow: hidden;
    }
}

/* ---------------------------------------- Rain Gear Page Styles Css End-------------------------------- */



/* ---------------------------------------- Coveralls & Overalls Page Styles Css Start-------------------------------- */

/* Coveralls Hero Section */
.coveralls-hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;

    /* Background image with dark overlay */
    background: 
        linear-gradient(rgba(32,48,79,0.6), rgba(32,48,79,0.6)), /* dark overlay */
        url('https://i.pinimg.com/1200x/ef/9f/a3/ef9fa3b29cc116df954b95e11f4c834e.jpg') center/cover no-repeat;
}

/* Title */
.coveralls-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

/* Subtitle */
.coveralls-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.coveralls-hero-btn {
    background-color: var(--primary-color);
    color: var(--hover-color);
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.coveralls-hero-btn:hover {
    background-color: #6fa018;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .coveralls-hero-title {
        font-size: 2.4rem;
    }
    .coveralls-hero-subtitle {
        font-size: 1rem;
    }
    .coveralls-hero-btn {
        padding: 10px 30px;
        font-size: 1rem;
    }
}

/* Product Section */
.coveralls-product-showcase {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.coveralls-product-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.coveralls-product-intro {
    color: var(--text-light);
}

.coveralls-product-card {
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
}

.coveralls-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.coveralls-product-card img {
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.coveralls-product-card:hover img {
    transform: scale(1.05);
}

.coveralls-product-name {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.coveralls-product-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

.coveralls-product-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 1rem 0;
}

.coveralls-product-btn {
   background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.coveralls-product-btn:hover {
   background-color: var(--primary-color) !important;
    color: white !important;
}

/* Features Section */
.coveralls-features-highlight {
    background-color: var(--body-bg);
    padding: 4rem 0;
}

.coveralls-features-title {
    color: var(--text-dark);
    font-weight: 700;
}

.coveralls-features-intro {
    color: var(--text-light);
}

.coveralls-feature-item {
    transition: var(--transition);
    padding: 1.5rem;
}

.coveralls-feature-item:hover {
    transform: translateY(-4px);
}

.coveralls-feature-icon {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(128, 186, 38, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.coveralls-feature-item h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.coveralls-feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Importance Section */
.coveralls-importance-section {
    padding: 4rem 0;
}

.coveralls-importance-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.coveralls-importance-text {
    color: var(--text-light);
    line-height: 1.8;
}

.coveralls-importance-list {
    list-style: none;
    padding: 0;
}

.coveralls-importance-list li {
    color: var(--text-dark);
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.coveralls-importance-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials Section */
.coveralls-testimonials-area {
    background-color: var(--body-bg);
    padding: 4rem 0;
}

.coveralls-testimonials-title {
    color: var(--text-dark);
    font-weight: 700;
}

.coveralls-testimonials-intro {
    color: var(--text-light);
}

.coveralls-testimonial-card {
    transition: var(--transition);
    border-radius: 8px;
}

.coveralls-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.coveralls-rating {
    font-size: 1.2rem;
}

.coveralls-testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
}

.coveralls-testimonial-author h6 {
    color: var(--text-dark);
}


/* Responsive Design */
@media (max-width: 768px) {
    .coveralls-hero-title {
        font-size: 2rem;
    }

    .coveralls-hero-subtitle {
        font-size: 1rem;
    }

    .coveralls-cta-title {
        font-size: 1.8rem;
    }

    .coveralls-product-card img {
        height: 200px;
    }

    .coveralls-features-highlight .row {
        gap: 2rem;
    }

    .coveralls-feature-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .coveralls-hero-banner {
        min-height: auto;
    }

    .coveralls-hero-title {
        font-size: 1.5rem;
    }

    .coveralls-product-showcase .row {
        gap: 1.5rem;
    }

    .coveralls-cta-banner {
        padding: 2rem 0;
    }

    .coveralls-cta-title {
        font-size: 1.5rem;
    }

    .coveralls-cta-btn {
        width: 100%;
    }
}

/* ---------------------------------------- Coveralls & Overalls Page Styles Css End-------------------------------- */


/* ---------------------------------------- Fire Reftardant Page Styles Css Start-------------------------------- */

/* Hero Section */
.frclothing-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;

    /* Background image with dark overlay */
    background: 
        linear-gradient(rgba(32,48,79,0.6), rgba(32,48,79,0.6)), /* semi-transparent overlay */
        url('https://i.pinimg.com/736x/3a/89/53/3a8953ef4deae40fb2b8653521fde680.jpg') center/cover no-repeat;
}

/* Title */
.frclothing-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

/* Subtitle */
.frclothing-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

/* Button */
.frclothing-hero-cta {
   background: var(--primary-color);
    color: var(--body-bg);
    border-color: var(--primary-color);
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}


.frclothing-hero-cta:hover {
  background-color: var(--hover-color);
    border-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(32,48,79,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .frclothing-hero-title {
        font-size: 2rem;
    }
    .frclothing-hero-subtitle {
        font-size: 1rem;
    }
    .frclothing-hero-cta {
        padding: 10px 30px;
        font-size: 1rem;
    }
}


/* Product Showcase Section */
.frclothing-product-showcase {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.frclothing-product-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.frclothing-product-subtitle {
  font-size: 1.1rem;
}

.frclothing-product-card {
  transition: var(--transition);
  border-radius: 10px;
  overflow: hidden;
}

.frclothing-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.frclothing-product-card img {
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
}

.frclothing-product-card-title {
  color: var(--text-dark);
  margin: 1rem 0 0.5rem 0;
}

.frclothing-product-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.frclothing-product-features {
  margin: 1rem 0;
}

.frclothing-product-features li {
  padding: 0.3rem 0;
  color: var(--text-light);
}

.frclothing-product-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-weight: 600;
  transition: var(--transition);
}

.frclothing-product-btn:hover {
  background-color: var(--hover-color);
  color: white;
}

/* Features Section */
.frclothing-features-section {
  padding: 5rem 0;
  background-color: white;
}

.frclothing-features-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.frclothing-features-subtitle {
  font-size: 1.1rem;
}

.frclothing-feature-item {
  padding: 2rem 1rem;
  transition: var(--transition);
  border-radius: 10px;
}

.frclothing-feature-item:hover {
  background-color: #f8f9fa;
}

.frclothing-feature-icon {
  font-size: 3rem;
  transition: var(--transition);
}

.frclothing-feature-item:hover .frclothing-feature-icon {
  transform: scale(1.1);
}

.frclothing-feature-name {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.frclothing-feature-desc {
  line-height: 1.5;
}

/* Why Choose Section */
.frclothing-why-choose-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(128, 186, 38, 0.08) 0%, rgba(32, 48, 79, 0.08) 100%);
}

.frclothing-why-choose-title {
  color: var(--text-dark);
  font-size: 2.2rem;
}

.frclothing-why-item {
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 5px;
  background-color: white;
}

.frclothing-why-item-title {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.frclothing-why-choose-section img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.frclothing-testimonials-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.frclothing-testimonials-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.frclothing-testimonials-subtitle {
  font-size: 1.1rem;
}

.frclothing-testimonial-card {
  border-radius: 10px;
  transition: var(--transition);
}

.frclothing-testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-5px);
}

.frclothing-testimonial-stars {
  color: var(--primary-color);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.frclothing-testimonial-text {
  color: var(--text-dark);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
}

.frclothing-testimonial-author {
  color: var(--text-dark);
  margin-top: 1rem;
}

.frclothing-testimonial-role {
  display: block;
  margin-top: 0.25rem;
}


/* ---------------------------------------- Fire Reftardant Page Styles Css End-------------------------------- */



/* ---------------------------------------- Work Accessories Page Styles Css Start-------------------------------- */


/* HERO SECTION WITH BACKGROUND IMAGE */
.accessories-hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Background Image */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
    url('https://i.pinimg.com/1200x/e3/c4/35/e3c435b03ea11d9cac23076897cbb5a9.jpg') center/cover no-repeat;

  padding: 60px 20px;
}

/* Center Content */
.accessories-hero-content {
  z-index: 2;
  max-width: 800px;
  color: white;
}

/* Title */
.accessories-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Subtitle */
.accessories-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

/* Button */
.accessories-hero-btn {
  background-color: var(--primary-color);
  color: var(--hover-color);
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.accessories-hero-btn:hover {
  background-color: #6fa018;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .accessories-hero-title {
    font-size: 2rem;
  }
  .accessories-hero-subtitle {
    font-size: 1rem;
  }
  .accessories-hero-section {
    padding: 40px 15px;
  }
}


/* ============ PRODUCT SHOWCASE SECTION ============ */
.accessories-product-showcase {
  padding: 80px 20px;
  background-color: var(--body-bg);
}

.accessories-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.accessories-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.accessories-section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.accessories-product-card {
  background-color: var(--body-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.accessories-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.accessories-product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.accessories-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.accessories-product-card:hover .accessories-product-image img {
  transform: scale(1.05);
}

.accessories-product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.accessories-product-details h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.accessories-product-details p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.accessories-product-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.accessories-product-btn:hover {
  background-color: var(--hover-color);
  transform: translateX(4px);
}

/* ============ FEATURES SECTION ============ */
.accessories-features-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.accessories-section-header--alt h2,
.accessories-section-header--alt p {
  color: var(--text-dark);
}

.accessories-feature-card {
  background-color: var(--body-bg);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.accessories-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(128, 186, 38, 0.15);
  border-color: var(--primary-color);
}

.accessories-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accessories-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.accessories-feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============ WHY ACCESSORIES MATTER SECTION ============ */
.accessories-why-matter-section {
  padding: 80px 20px;
  background-color: var(--body-bg);
}

.accessories-why-matter-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accessories-why-matter-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.accessories-why-matter-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.accessories-why-matter-list {
  list-style: none;
  margin-bottom: 2rem;
}

.accessories-why-matter-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}

.accessories-why-matter-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.accessories-why-matter-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
  transition: var(--transition);
}

.accessories-why-matter-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

/* ============ TESTIMONIALS SECTION ============ */
.accessories-testimonials-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.accessories-section-header--light h2 {
  color: var(--text-dark);
}

.accessories-section-header--light p {
  color: var(--text-light);
}

.accessories-testimonial-card {
  background-color: var(--body-bg);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.accessories-testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(128, 186, 38, 0.15);
  transform: translateY(-4px);
}

.accessories-testimonial-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.accessories-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.accessories-testimonial-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.accessories-testimonial-header p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.accessories-testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.accessories-testimonial-stars {
  color: #ffb800;
  font-size: 1rem;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .accessories-footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .accessories-footer-legal {
    justify-content: center;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .accessories-hero-title {
    font-size: 2rem;
  }

  .accessories-section-header h2 {
    font-size: 1.8rem;
  }

  .accessories-cta-content h2 {
    font-size: 1.8rem;
  }

  .accessories-nav-links {
    gap: 1.5rem;
  }

  .accessories-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .accessories-cta-primary,
  .accessories-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .accessories-hero-section {
    padding: 40px 15px;
  }

  .accessories-product-showcase,
  .accessories-features-section,
  .accessories-why-matter-section,
  .accessories-testimonials-section {
    padding: 50px 15px;
  }

  .accessories-hero-title {
    font-size: 1.5rem;
  }

  .accessories-section-header h2 {
    font-size: 1.5rem;
  }

  .accessories-why-matter-content h2 {
    font-size: 1.5rem;
  }
}


/* ---------------------------------------- Work Accessories Page Styles Css End-------------------------------- */


/* ---------------------------------------- About Section Page Styles Css Start-------------------------------- */



/* FULL BACKGROUND HERO SECTION */
.aboutus-hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;

  /* Background Image */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/about-store.jpg") center/cover no-repeat;

  text-align: center;
}

/* CONTENT */
.aboutus-hero-content {
  max-width: 900px;
  color: #fff;
}

/* TITLE */
.aboutus-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* SUBTITLE */
.aboutus-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

/* BUTTON */
.aboutus-hero-btn {
  background-color: var(--primary-color);
  color: var(--hover-color);
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.aboutus-hero-btn:hover {
  background-color: #6fa018;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .aboutus-hero-title {
    font-size: 2rem;
  }
  .aboutus-hero-subtitle {
    font-size: 1rem;
  }
}
/* Timeline Section */
.aboutus-story-timeline {
  padding: 5rem 0;
}

/* Main Heading */
.timeline-heading {
  color: var(--text-dark);
  font-size: 2.6rem;
  margin-bottom: 3.5rem;
}

/* Timeline Card */
.timeline-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.timeline-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* YEAR ICON */
.timeline-year {
  background-color: var(--primary-color);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border: 3px solid var(--hover-color);
  box-shadow: 0 8px 20px rgba(128, 186, 38, 0.3);
}

/* Title */
.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* Description */
.timeline-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}


/* Family Legacy Section */
.aboutus-family-legacy {
  padding: 5rem 0;
  background-color: white;
}

.aboutus-family-legacy h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.aboutus-family-legacy p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Quality Commitment Section */
.aboutus-quality-commitment {
  padding: 5rem 0;
}

.aboutus-quality-commitment h2 {
  color: var(--text-dark);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.quality-card {
  transition: var(--transition);
  border-radius: 12px;
}

.quality-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(128, 186, 38, 0.2) !important;
}

.quality-icon {
  transition: var(--transition);
}

.quality-card:hover .quality-icon {
  transform: scale(1.1);
}

/* Industries Section */
.aboutus-industries-section {
  padding: 5rem 0;
  background-color: white;
}

.aboutus-industries-section h2 {
  color: var(--text-dark);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.industry-card {
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.industry-card:hover {
  background-color: white !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 8px 16px rgba(128, 186, 38, 0.15);
  transform: translateY(-5px);
}

.industry-card:hover h5 {
  color: var(--primary-color);
}

/* Trust Section */
.aboutus-trust-section {
    background: var(--footer-bg);
  color: var(--body-bg);
  padding: 5rem 0;
}

.aboutus-trust-section h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.trust-card {
  transition: var(--transition);
  border: 2px solid #80ba26 !important;
  height: 250px;
  border-radius: 10px;
}

.trust-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Team Section */
.aboutus-team-section {
  padding: 5rem 0;
}

.aboutus-team-section h2 {
  color: var(--text-dark);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.team-member {
  transition: var(--transition);
}

.team-member img {
  transition: var(--transition);
  border: 3px solid var(--border-color);
}

.team-member:hover img {
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(128, 186, 38, 0.2);
}

.team-member h5 {
  color: var(--text-dark);
  margin-top: 1rem;
}

/* Sustainability Section */
.aboutus-sustainability-section {
  padding: 5rem 0;
  background-color: white;
}

.aboutus-sustainability-section h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.aboutus-sustainability-section ul li {
  font-size: 1.05rem;
  color: var(--text-light);
  transition: var(--transition);
}

.aboutus-sustainability-section ul li:hover {
  color: var(--text-dark);
  transform: translateX(5px);
}

/* Testimonial Section */
.aboutus-testimonial-section {
  padding: 5rem 0;
}

.aboutus-testimonial-section h2 {
  color: var(--text-dark);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.testimonial-card {
  transition: var(--transition);
  border-radius: 12px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(128, 186, 38, 0.2) !important;
}

.testimonial-card h6 {
  color: var(--text-dark);
}


/* Responsive Design */
@media (max-width: 768px) {
  .aboutus-hero-section h1 {
    font-size: 1.8rem;
  }

  .aboutus-story-timeline,
  .aboutus-quality-commitment,
  .aboutus-industries-section,
  .aboutus-team-section,
  .aboutus-sustainability-section,
  .aboutus-testimonial-section {
    padding: 3rem 0;
  }

  .aboutus-hero-section,
  .aboutus-family-legacy,
  .aboutus-sustainability-section {
    padding: 3rem 0;
  }

  .team-member img {
    width: 150px !important;
    height: 150px !important;
  }

  .timeline-item .d-flex {
    flex-direction: column;
  }

  .timeline-icon {
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 576px) {
  .aboutus-hero-section h1 {
    font-size: 1.5rem;
  }

  .quality-card,
  .industry-card,
  .testimonial-card {
    margin-bottom: 1rem;
  }

  .btn-lg {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.95rem;
  }
}



/* ---------------------------------------- About Section Page Styles Css End-------------------------------- */


/* ---------------------------------------- single Category product Page Styles Css Start-------------------------------- */


/* ==================== HERO BANNER SECTION ==================== */
.laceup-hero-banner {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  background-image: url("https://i.pinimg.com/1200x/78/3c/41/783c41e7b1079a577076a73e5fefce69.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.laceup-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.laceup-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}

.laceup-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.laceup-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  font-weight: 300;
}

.laceup-hero-cta {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(128, 186, 38, 0.3);
}

.laceup-hero-cta:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(32, 48, 79, 0.4);
  color: white;
}

/* ==================== INFO SECTION ==================== */
.laceup-info-section {
  padding: 80px 0;
  background: var(--body-bg);
}

.laceup-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.laceup-info-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.laceup-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.laceup-info-item {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.laceup-info-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.laceup-info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.laceup-info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 600;
}

.laceup-info-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .laceup-info-grid {
    grid-template-columns: 1fr;
  }

  .laceup-hero-title {
    font-size: 2.5rem;
  }

  .laceup-hero-subtitle {
    font-size: 1.1rem;
  }
}

/* ==================== PRODUCT GRID SECTION ==================== */
.laceup-product-grid {
  padding: 80px 0;
  background: #f9f9f9;
}

.laceup-product-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-dark);
}

.laceup-product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.laceup-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.laceup-product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laceup-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.laceup-product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.laceup-product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.laceup-product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.laceup-product-highlight {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 500;
}

.laceup-product-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
}

.laceup-product-link:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

/* ==================== HIGHLIGHTS SECTION ==================== */
.laceup-highlights-section {
  padding: 80px 0;
  background: var(--body-bg);
}

.laceup-highlights-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-dark);
}

.laceup-highlight-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.laceup-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(128, 186, 38, 0.15);
  border-color: var(--primary-color);
}

.laceup-highlight-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.laceup-highlight-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.laceup-highlight-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================== SAFETY STANDARDS SECTION ==================== */
.laceup-safety-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.laceup-safety-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-dark);
}

.laceup-safety-standards {
  max-width: 900px;
  margin: 0 auto;
}

.laceup-safety-item {
  display: flex;
  gap: 25px;
  padding: 25px;
  margin-bottom: 20px;
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.laceup-safety-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.laceup-safety-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
  font-weight: 700;
}

.laceup-safety-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.laceup-safety-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.laceup-whyus-section {
  padding: 80px 0;
  background: var(--body-bg);
}

.laceup-whyus-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-dark);
}

.laceup-whyus-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.laceup-whyus-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(128, 186, 38, 0.2);
  border-color: var(--primary-color);
}

.laceup-whyus-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.laceup-whyus-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.laceup-whyus-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
  .laceup-hero-title {
    font-size: 3rem;
  }

  .laceup-product-grid-title,
  .laceup-highlights-title,
  .laceup-safety-title,
  .laceup-whyus-title {
    font-size: 2rem;
  }

  .laceup-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .laceup-hero-banner {
    height: 400px;
  }

  .laceup-hero-title {
    font-size: 2rem;
  }

  .laceup-hero-subtitle {
    font-size: 1rem;
  }

  .laceup-hero-cta {
    padding: 12px 32px;
    font-size: 1rem;
  }

  .laceup-info-section,
  .laceup-product-grid,
  .laceup-highlights-section,
  .laceup-safety-section,
  .laceup-whyus-section,
  .laceup-cta-section {
    padding: 50px 0;
  }

  .laceup-product-grid-title,
  .laceup-highlights-title,
  .laceup-safety-title,
  .laceup-whyus-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .laceup-info-title {
    font-size: 1.8rem;
  }

  .laceup-highlight-card,
  .laceup-whyus-box {
    padding: 25px;
  }

  .laceup-safety-item {
    flex-direction: column;
    text-align: center;
  }

  .laceup-safety-icon {
    margin: 0 auto 15px;
  }

  .laceup-cta-heading {
    font-size: 1.5rem;
  }

  .laceup-cta-text {
    font-size: 1rem;
  }

  .laceup-footer {
    text-align: center;
  }
}


/* ---------------------------------------- single Category Page Styles Css End-------------------------------- */



/* ---------------------------------------- Bulk Order Page Styles Css Start-------------------------------- */


/* Hero Section */
.bulkorder-hero-section {
   background: linear-gradient(rgba(32, 48, 79, 0.7), rgba(26, 36, 56, 0.7)),
        url("https://i.pinimg.com/736x/92/ae/9c/92ae9c10f44fb1f11fc4c49616470ef5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    padding: 100px 0;
    text-align: left;

    animation: fadeInDown 0.8s ease-out;
}

.bulkorder-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bulkorder-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bulkorder-hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.bulkorder-cta-btn-primary {
    display: inline-block;
    padding: 10px 60px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.bulkorder-cta-btn-primary:hover {
 background-color: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* Form Section */
.bulkorder-form-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.bulkorder-form-card {
  background: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.bulkorder-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.bulkorder-form-subtitle {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.bulkorder-form-group {
  margin-bottom: 25px;
}

.bulkorder-form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.bulkorder-company-name,
.bulkorder-contact-person,
.bulkorder-contact-info,
.bulkorder-sizes-needed,
.bulkorder-timeline-budget,
.bulkorder-form-notes {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: var(--transition);
}

.bulkorder-company-name:focus,
.bulkorder-contact-person:focus,
.bulkorder-contact-info:focus,
.bulkorder-sizes-needed:focus,
.bulkorder-timeline-budget:focus,
.bulkorder-form-notes:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(128, 186, 38, 0.1);
  outline: none;
}

.bulkorder-items-needed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.bulkorder-item-checkbox {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.bulkorder-item-checkbox:hover {
  border-color: var(--primary-color);
  background-color: #f8f9fa;
}

.bulkorder-item-checkbox input:checked ~ .form-check-label {
  color: var(--primary-color);
  font-weight: 600;
}

.form-check-label {
  cursor: pointer;
  margin-bottom: 0;
  user-select: none;
}

.bulkorder-form-hint {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 5px;
}

.bulkorder-error-msg {
  color: #dc3545;
  font-size: 0.85rem;
  display: none;
  margin-top: 5px;
}

.bulkorder-error-msg.show {
  display: block;
}

.bulkorder-form-submit {
  margin-top: 35px;
  text-align: center;
}

.bulkorder-submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 16px 60px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bulkorder-submit-btn:hover {
  background-color: #6ba020;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(128, 186, 38, 0.3);
}

/* Info Section */
.bulkorder-info-section {
  padding: 80px 0;
  background-color: white;
}

.bulkorder-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.bulkorder-info-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.bulkorder-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bulkorder-info-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.bulkorder-info-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.bulkorder-info-card-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section */
.bulkorder-contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #6ba020 100%);
  color: white;
  text-align: center;
}

.bulkorder-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bulkorder-contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 50px;
}

.bulkorder-contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bulkorder-contact-method {
  flex: 0 1 auto;
}

.bulkorder-phone-btn,
.bulkorder-email-btn {
  background-color: white;
  color: var(--primary-color);
  padding: 16px 35px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
}

.bulkorder-phone-btn:hover,
.bulkorder-email-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--hover-color);
}

.bulkorder-contact-icon {
  font-size: 1.5rem;
}

.bulkorder-contact-detail {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Guidelines Section */
.bulkorder-guidelines-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.bulkorder-guidelines-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.bulkorder-guideline-card {
  background: white;
}

.bulkorder-guideline-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.bulkorder-guideline-list {
  list-style: none;
  padding: 0;
}

.bulkorder-guideline-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.bulkorder-guideline-list li:last-child {
  border-bottom: none;
}

.bulkorder-guideline-list li::before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: 700;
  margin-right: 10px;
}


/* Responsive */
@media (max-width: 768px) {
  .bulkorder-hero-title {
    font-size: 2.5rem;
  }

  .bulkorder-hero-subtitle {
    font-size: 1.1rem;
  }

  .bulkorder-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .bulkorder-cta-btn-primary,
  .bulkorder-cta-btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .bulkorder-form-card {
    padding: 30px 20px;
  }

  .bulkorder-form-title {
    font-size: 2rem;
  }

  .bulkorder-items-needed {
    grid-template-columns: 1fr;
  }

  .bulkorder-contact-methods {
    flex-direction: column;
    gap: 30px;
  }

  .bulkorder-phone-btn,
  .bulkorder-email-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bulkorder-hero-title {
    font-size: 2rem;
  }

  .bulkorder-form-card {
    padding: 20px;
  }

  .bulkorder-submit-btn {
    width: 100%;
  }
}


/* ---------------------------------------- Bulk Order Page Styles Css End-------------------------------- */

