@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Shreelipi';
    src: url('../Fonts/Shreelipi_4672.TTF') format('truetype');
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gelion', sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

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

/* Header Container Settings */
.header {
    width: 100%;
    position: relative;
    z-index: 100;
}

/* Top thin bar */
.top-bar {
    height: 12px;
    background-color: #333333;
    /* Dark gray border above */
    width: 100%;
}

/* Main header */
.header-main {
    background-color: #fff100;
    /* Vibrant yellow */
    padding: 15px 0;
}

/* Logo Area */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #000;
}

.logo-placeholder img {
    max-height: 50px;
}

/* Navigation */
.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Call to Action Button */
.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s ease;
}

/* Toggle active animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.call-btn {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
}

/* Pill shape for text */
.call-text {
    border: 1.5px solid #000;
    border-radius: 6px;
    padding: 4px 12px 4px 12px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    min-width: 140px;
}

.call-subtitle {
    font-size: 11px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.call-number {
    font-size: 18px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

/* Circle shape for the icon overlapping the border */
.call-icon {
    width: 25px;
    height: 25px;
    border: 1.5px solid #000;
    border-radius: 50%;
    background-color: #fee614;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    z-index: 2;
}

.call-icon svg {
    width: 14px;
    height: 14px;
    color: #000;
}

/* Hover effects for button */
.call-btn:hover .call-text {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive considerations for Header */
@media (max-width: 992px) {
    .container {
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
    }

    .header-action {
        order: 2;
        margin-left: auto;
        margin-right: 20px;
    }

    .mobile-toggle {
        display: flex;
        order: 3;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fee614;
        z-index: 100;
        padding-top: 80px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

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

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 20px;
    }

    .main-nav a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .logo-placeholder img {
        max-height: 40px;
    }

    .call-btn {
        transform: scale(0.9);
        transform-origin: right center;
    }

    .header-action {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .call-btn {
        transform: scale(0.75);
    }

    .logo-placeholder img {
        max-height: 30px;
    }

    .header-action {
        margin-right: 10px;
    }
}

/* ================== Breadcrumb Section ================== */
.breadcrumb-section {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/header-baners.fw.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.breadcrumb-section .container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

.breadcrumb-title {
    font-family: 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumb-nav {
    font-family: 'Gelion', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav span {
    color: #fff;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 12px;
    }
}

/* ================== Footer Section ================== */
.main-footer {
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
}

.footer-top {
    background-color: #fee614;
    padding: 40px 0 50px 0;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.catalogue-btn {
    position: absolute;
    top: -60px;
    right: 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.catalogue-btn:hover {
    background-color: #333;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin-top: 20px;
}

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

.footer-col-content {
    margin-top: auto;
    position: relative;
    padding: 0;
}

.col-about {
    padding-right: 30px;
}

.footer-logo {
    max-width: 220px;
    margin: 0 auto 15px auto;
    display: block;
}

.col-about p {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
}

.col-contact {
    padding: 0 40px;
}

.col-contact .footer-col-content::before,
.col-contact .footer-col-content::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #000;
}

.col-contact .footer-col-content::before {
    left: -40px;
}

.col-contact .footer-col-content::after {
    right: -40px;
}

.footer-sankalp-logo {
    max-width: 180px;
    margin: 0 auto 15px auto;
    align-self: center;
    display: block;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    margin-bottom: 8px;
}

.col-links {
    padding-left: 30px;
}

.footer-links-title {
    background-color: #808080;
    color: #fee614;
    display: inline-block;
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.col-links ul {
    list-style: none;
}

.col-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.back-to-top {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fee614;
    border: none;
    padding: 12px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
}

.footer-bottom {
    background-color: #DDE1E3;
    padding: 25px 0 15px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 992px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    .col-contact .footer-col-content::before,
    .col-contact .footer-col-content::after {
        display: none;
    }

    .catalogue-btn {
        position: static;
        margin-bottom: 30px;
    }
}

/* ================== Product Listing Section ================== */
.product-listing-section {
    padding: 60px 0;
    background-color: #fff;
}

.product-listing-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Styles */
.product-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.category-list a, .top-rated-info h4, .product-title a, .product-detail-price, .product-short-desc, .add-to-cart-btn, .add-to-cart-full {
    font-family: 'Gelion', sans-serif !important;
}

.widget-title, .why-choose-title, .why-choose-item-title, .product-detail-title, .breadcrumb-title {
    font-family: 'Gotham', sans-serif !important;
    text-transform: uppercase;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background-color: #FFF100;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.category-list {
    list-style: none;
    padding: 0;
    border: 1px solid #eee;
    border-radius: 4px;
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li.active a {
    background-color: #FFF100;
    color: #000;
    font-weight: 700;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background-color: #f9f9f9;
}

.category-list span {
    color: #999;
}

/* Price Filter */
.price-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.filter-btn {
    background-color: #FFF100;
    color: #000;
    border: none;
    padding: 8px 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
}

/* Top Rated Products Widget */
.top-rated-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.top-rated-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.top-rated-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-rated-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.top-rated-info .rating {
    color: #ffb400;
    font-size: 12px;
    margin-bottom: 5px;
}

.top-rated-info .price {
    font-weight: 700;
    color: #000;
}

/* Main Content Styles */
.product-main-content {
    flex-grow: 1;
}

.product-banner {
    margin-bottom: 30px;
}

.product-banner img {
    width: 100%;
    border-radius: 4px;
}

.product-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.view-mode {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: none;
    border: 1px solid #eee;
    padding: 5px;
    cursor: pointer;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active {
    color: #000;
    border-color: #FFF100;
    background-color: #FFF100;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.sort-options select {
    padding: 5px 10px;
    border: 1px solid #eee;
    outline: none;
}

.result-count {
    font-size: 14px;
    color: #999;
}

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

.product-card {
    text-align: center;
    transition: all 0.3s ease;
}

.product-card-img {
    position: relative;
    margin-bottom: 15px;
    border: 1px solid #eee;
    padding: 10px;
}

.product-card-img img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.product-title {
    font-size: 15px;
    margin-bottom: 10px;
}

.product-title a {
    text-decoration: none;
    color: #333;
}

.product-card-info .rating {
    color: #ffb400;
    margin-bottom: 10px;
}

.product-card-info .price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #FFF100;
    color: #000;
    border-color: #FFF100;
}

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

@media (max-width: 992px) {
    .product-listing-wrapper {
        flex-direction: column;
    }
    .product-sidebar {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-toolbar {
        flex-direction: column;
        gap: 15px;
    }
}

/* ================== Single Product Page ================== */
.single-product-section {
    padding: 80px 0;
    background-color: #fff;
}

.single-product-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    gap: 20px;
    width: 50%;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100px;
}

.thumb-item {
    border: 1px solid #eee;
    padding: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumb-item.active {
    border-color: #FFF100;
}

.thumb-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.main-image {
    flex-grow: 1;
    border: 1px solid #eee;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* Product Details */
.product-details {
    width: 50%;
}

.product-detail-title {
    font-family: 'Gotham', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.product-short-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: #f9f9f9;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 700;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    outline: none;
}

.add-to-cart-full {
    background-color: #FFF100;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-full:hover {
    background-color: #ffe000;
}

.product-meta {
    margin-bottom: 30px;
    font-size: 14px;
}

.wishlist-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 15px;
    cursor: pointer;
}

.category-meta {
    color: #999;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icons a {
    width: 30px;
    height: 30px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-icons a:hover {
    background-color: #FFF100;
    color: #000;
    border-color: #FFF100;
}

@media (max-width: 992px) {
    .single-product-wrapper {
        flex-direction: column;
    }
    .product-gallery, .product-details {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-gallery {
        flex-direction: column-reverse;
    }
    .thumbnail-list {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .add-to-cart-full {
        width: 100%;
        justify-content: center;
    }
}
