/*
Theme Name: Bluk Precorement
Theme URI: 
Author: 
Author URI: 
Description: A minimal, accessible WordPress theme for Bluk Precorement.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: bluk-precorement
*/

/* Basic theme CSS - feel free to expand */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sauce Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 80px;
    width: auto;
}

.header-title {
    font-size: 14px;
    font-weight: 400;
    color: #b0b0b0;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-icon {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #333;
}

.signin-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.signin-link:hover {
    color: #333;
}

.create-account-btn {
    padding: 8px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.create-account-btn:hover {
    border-color: #999;
    color: #333;
}

/* Navigation */
.navigation {
    background-color: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.nav-header {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-left,
.nav-right {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: #999;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-link:hover {
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 15px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.video-link:hover {
    color: #666;
}

.play-icon {
    color: #b0b0b0;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: #F9A825;
    font-weight: 500;
    white-space: nowrap;
}

/* Search Container */
.search-container {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    max-width: 600px;
}

.search-input {
    flex: 1;
    padding: 18px 25px;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 15px;
    color: #666;
    outline: none;
    transition: border-color 0.3s;
}

.search-input::placeholder {
    color: #b0b0b0;
}

.search-input:focus {
    border-color: #ccc;
}

.search-button {
    padding: 18px 40px;
    background-color: #e8e8e8;
    border: 1px solid #e0e0e0;
    border-radius: 0 5px 5px 0;
    color: #666;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.search-button:hover {
    background-color: #d8d8d8;
}

.frequently-searched {
    color: #b0b0b0;
    font-size: 14px;
}

.frequently-searched span {
    color: #999;
}

/* Hero Right - Hero Image */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
}

/* Description Content (inside hero-right) */
.description-content {
    text-align: center;
    position: relative;
    margin-top: 40px;
    width: 100%;
}

.description-text {
    color: #b0b0b0;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto;
}

.highlight-text {
    color: #F9A825;
    font-weight: 500;
}

/* Decorative Border */
.decorative-border {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.border-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature Cards Section */
.features-section {
    padding: 80px 0 40px 0;
    background-color: #fffcf3;
    position: relative;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
}

.feature-card-box {
    border: 2px solid #f9a825;
    padding: 50px 30px;
    text-align: center;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #F9A825;
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-card-text {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-card-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    transition: color 0.3s ease;
}

.feature-card-link:hover {
    color: #F9A825;
}

/* Elephant Border Pattern */
.elephant-border {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.elephant-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Explore ODOP Section */
.explore-odop-section {
    background-color: #f8f8f8;
    padding: 80px 0 60px;
}

.explore-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 80px;
}

.explore-left {
    flex: 1;
}

.explore-title {
    font-size: 48px;
    font-weight: 400;
    color: #666;
    margin-bottom: 10px;
}

.explore-subtitle {
    font-size: 28px;
    color: #999;
    margin-bottom: 20px;
}

.italic-orange {
    color: #F9A825;
    font-style: italic;
}

.explore-description {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
}

.explore-right {
    flex: 1;
}

.stats-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #F9A825;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Category Icons Grid */
/* .category-icons-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-circle {
    width: 100%;
    aspect-ratio: 1;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
	overflow:hidden;
}
.circle-image {
  width: 100%;
  height: 100%;
	border-radius:50%;
	object-fit:cover;
}
.category-circle:hover {
    border-color: #F9A825;
} */

.category-icons-scrollwrap {
    overflow-x: auto;
    width: 100%;
    margin-top: 50px;
	scrollbar-width: none;
}

.category-icons-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: max-content;
    padding: 20px 0;
}

.category-row {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.category-circle {
    position: relative;
    overflow: hidden;
    width: 150px;
    min-width: 150px;
    aspect-ratio: 1;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background-color: #fff;
    transition: border-color 0.3s ease;
    overflow: hidden;
}
.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.circle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50%;
    transition: opacity 0.35s;
}

.category-circle:hover {
    box-shadow: 0 0 30px 10px rgba(249,168,37,0.35);
}

.category-circle:hover .circle-overlay {
    opacity: 1;
    pointer-events: auto;
}
.category-circle:hover {
    border-color: #F9A825;
}

/* circle css ended */



/* Decorative Border 2 */
.decorative-border-2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.border-image-2 {
    width: 100%;
    height: auto;
    display: block;
}


.chandauli-tag {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 100px;
    height: 100px;
    background-color: #d4c5a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    line-height: 1.3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products-section {
    background-color: white;
    padding: 60px 0;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.product-card {
    background-color: #3a3a3a;
    border: 1px solid #2c2c2c;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: transparent;
    color: #F9A825;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-info {
    padding: 25px 20px;
    background-color: white;
}

.product-title {
    font-size: 16px;
    font-weight: 400;
    color: #F9A825;
    margin-bottom: 8px;
}

.product-price {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 60px 0 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

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

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F9A825;
}

.social-section {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #F9A825;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 50px;
    }

    .hero-image {
        max-width: 750px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 60px;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-image {
        max-width: 650px;
    }

    .description-content {
        margin-top: 30px;
    }

    .search-container {
        max-width: 100%;
    }

    .video-link {
        justify-content: center;
    }

    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .explore-content {
        flex-direction: column;
        gap: 40px;
    }

    .category-icons-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-header {
        display: flex;
        justify-content: flex-end;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-content {
        display: none;
        flex-direction: column;
        gap: 20px;
        padding-top: 15px;
    }

    .nav-content.open {
        display: flex;
    }

    .nav-left,
    .nav-right {
        width: 100%;
        align-items: flex-start;
    }

    .logo {
        height: 100px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-left {
        flex-direction: column;
        text-align: center;
    }

    .header-title {
        font-size: 12px;
    }

    .hero-title {
        font-size: 36px;
    }

    .search-container {
        flex-direction: column;
        gap: 5px;
    }

    .search-input,
    .search-button {
        border-radius: 5px;
        border: 1px solid #e0e0e0;
    }

    .hero-image {
        max-width: 500px;
    }

    .description-content {
        margin-top: 25px;
    }

    .description-text {
        font-size: 16px;
    }

    .nav-left,
    .nav-right {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-box {
        padding: 40px 25px;
    }

    .feature-card-title {
        font-size: 20px;
    }

    .explore-title {
        font-size: 36px;
    }

    .explore-subtitle {
        font-size: 22px;
    }

    .category-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chandauli-tag {
        left: 40px;
        width: 80px;
        height: 80px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 90px;
    }

    .hero-title {
        font-size: 28px;
    }

    .home-hero {
        padding: 50px 0 40px;
    }

    .hero-image {
        max-width: 350px;
    }

    .description-content {
        margin-top: 20px;
    }

    .description-text {
        font-size: 14px;
    }

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

    .feature-card-box {
        padding: 30px 20px;
    }

    .feature-card-title {
        font-size: 18px;
    }

    .feature-card-text {
        font-size: 14px;
    }

    .explore-title {
        font-size: 28px;
    }

    .explore-subtitle {
        font-size: 18px;
    }

    .explore-description {
        font-size: 14px;
    }

    .stats-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .category-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

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

    .chandauli-tag {
        left: 20px;
        width: 70px;
        height: 70px;
        font-size: 10px;
    }

}

.home-products-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 30px;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
    padding: 10px 0 40px;
}

.home-product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.06);
}

.home-product-card .product-image img {
    width: 100%;
    height: auto;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 12px;
    min-height: 50px;
}

.product-price {
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin: 10px 0;
}

.product-add-cart a.button {
    display: inline-block;
    background: #dd1133;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
}

.product-add-cart a.button:hover {
    background: #b20d28;
}

.hero {
    display: none;
}


/* new css of search page  */


/* search results */
.alibaba-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
.alibaba-product-card {
    border: 2px solid #F9A825;
    border-radius: 8px;
    background: #fff;
    padding: 20px 14px;
    transition: box-shadow 0.25s;
    box-shadow: 0 0 0 #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.alibaba-product-card:hover {
    box-shadow: 0 6px 18px 0 rgba(240,180,45,0.13);
}
.alibaba-product-card img {
    display: block;
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 4px;
    background: #f6f6f6;
}
.product-title {
    font-size: 1.15rem;
    margin: 0 0 8px 0;
    font-weight: bold;
    color: #0e1693;
    text-decoration: underline;
}
.product-desc {
    font-size: 1rem;
    color: #3c3c3c;
    margin-bottom: 10px;
    height: 60px;
    overflow: hidden;
}
.product-price {
    font-size: 1.13rem;
    font-weight: 600;
    color: #e47700;
    margin-top: 6px;
}
.product-add-cart {
    margin-top: auto;
    width: 100%;
}