@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;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.relative-container {
    position: relative;
}

.catalogue-btn {
    position: absolute;
    top: -77px;
    right: 40px;
    background-color: #0D0C0F;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}
@media (max-width: 992px) {
    .catalogue-btn {
        top: 0px;
    }
}

.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;
    display: block;
}

.col-about p {
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.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;
    align-self: center;
    display: block;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 21px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    margin-bottom: 2px;
    text-align: center;
    justify-content: center;
}

.mt-2 {
    margin-top: 0px;
}

.mt-3 {
    margin-top: 13px;
}

.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;
    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;
}

/* Why page footer: QUICK LINKS column (buttons + social) */
.footer-col-quicklinks {
    padding-left: 20px;
    padding-right: 10px;
    align-self: flex-end;
}

.footer-col-quicklinks .footer-col-content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 270px;
}

.footer-quick-title {
    margin: 0 0 18px;
    padding: 0;
    background: none;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.footer-quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
    width: 100%;
}

.footer-quick-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 2px solid #000;
    border-radius: 9999px;
    background: transparent;
    box-shadow: none;
}

.footer-col-quicklinks .footer-quick-btn:hover {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

.footer-col-quicklinks .footer-quick-btn:focus-visible {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transform: none;
    outline: 2px solid #000;
    outline-offset: 3px;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-social-link svg {
    display: block;
}

@media (max-width: 992px) {
    .footer-col-quicklinks {
        padding-left: 0;
        padding-right: 0;
        align-self: center;
        width: 100%;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 360px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-quick-buttons {
        width: 100%;
    }

    .footer-quick-btn {
        width: 100%;
    }
}

.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;
}

.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;
        gap: 24px;
    }

    .col-contact {
        padding: 0 16px;
    }

    .col-contact .footer-col-content::before,
    .col-contact .footer-col-content::after {
        display: none;
    }

    .catalogue-btn {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-flex;
        width: auto;
        max-width: max-content;
        margin: 0 0 30px;
    }

    .col-about p {
        font-size: 16px;
        letter-spacing: 0.4px;
    }

    .contact-item {
        font-size: 16px;
        line-height: 1.35;
    }

    .footer-quick-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-quick-buttons {
        margin-bottom: 14px;
    }

    .footer-quick-btn {
        font-size: 12px;
        padding: 7px 12px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .footer-social-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-logo {
        max-width: 170px;
    }

    .catalogue-btn {
        padding: 10px 20px;
        font-size: 10px;
        margin: 0 auto 20px 0;
    }

    .col-about p {
        font-size: 14px;
    }

    .contact-item {
        font-size: 14px;
        gap: 6px;
    }

    .footer-quick-title {
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 320px;
    }

    .footer-quick-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .footer-social-row {
        gap: 9px;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .footer-social-link svg {
        width: 20px;
        height: 20px;
    }

    .back-to-top {
        padding: 10px 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 140px;
    }

    .catalogue-btn {
        padding: 8px 16px;
        font-size: 9px;
    }

    .footer-sankalp-logo {
        max-width: 140px;
    }

    .footer-top {
        padding: 28px 0 44px;
    }

    .contact-item {
        font-size: 12px;
        line-height: 1.3;
    }

    .footer-quick-title {
        font-size: 15px;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 280px;
    }

    .footer-quick-btn {
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    .back-to-top {
        padding: 8px 20px;
        font-size: 10px;
        bottom: -15px;
    }
}

/* ================== 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, .add-to-cart-btn {
    font-family: 'Gelion', sans-serif !important;
}

.widget-title, .why-choose-title, .why-choose-item-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: 60px 0 80px;
    background-color: #fff;
}

.single-product-page-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-display-container {
    margin-bottom: 40px;
}

.product-content-wrapper {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #fee614 50%, transparent 50%);
    width: 100%;
}

.product-info-left {
    width: 32%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-inline-logo {
    height: 80px;
    margin-bottom: 20px;
}

.product-hindi-title {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #000;
}

.product-specs-table {
    width: auto;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 14px;
    color: #000;
}

.product-specs-table th {
    text-align: right;
    padding: 8px 25px 8px 0;
    font-weight: 400;
    white-space: nowrap;
}

.product-specs-table td {
    text-align: left;
    padding: 8px 0 8px 5px;
    font-weight: 400;
}

.product-specs-table tr:nth-child(2) th,
.product-specs-table tr:nth-child(2) td,
.product-specs-table tr:nth-child(3) th,
.product-specs-table tr:nth-child(3) td {
    border-bottom: 1px solid #000;
}

.model-badge {
    background-color: #000;
    color: #fee614;
    padding: 5px 15px;
    border-radius: 0;
    font-weight: 400;
    display: inline-block;
}

.product-main-img {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #808080;
    min-height: 460px;
    padding: 15px;
}

.product-main-img img {
    width: 60%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-specs-right {
    width: 36%;
    padding: 60px 60px 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-specs-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: #fee614;
    z-index: 1;
}

.spec-title-pill {
    background-color: #8c8c8c;
    color: #fee614;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 0 20px 0 0;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.thumbnail {
    background-color: #808080;
    width: 30%;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.thumbnail.is-active {
    border-color: #fee614;
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.spec-list-wrapper {
    margin-top: 10px;
    flex-grow: 1;
}

.spec-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
    color: #000;
}

.spec-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 4px;
}

.spec-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.vertical-text {
    position: absolute;
    right: 50px;
    bottom: 160px;
    transform: rotate(-90deg);
    transform-origin: right bottom;
    font-size: 11px;
    color: #000;
    white-space: nowrap;
    z-index: 2;
    font-weight: 400;
}


@media (max-width: 1200px) {
    .product-info-left {
        width: 30%;
        padding: 40px 20px;
    }

    .product-main-img {
        width: 35%;
    }

    .product-specs-right {
        width: 35%;
        padding: 40px 60px 40px 20px;
    }
}

@media (max-width: 992px) {
    .single-product-page-inner {
        padding: 0 15px;
    }

    .product-content-wrapper {
        flex-direction: column;
        background: #fff;
    }

    .product-info-left {
        width: 100%;
        background-color: #fee614;
    }

    .product-main-img {
        width: 100%;
        min-height: 360px;
    }

    .product-specs-right {
        width: 100%;
        padding: 40px 20px;
        background-color: #fff;
    }

    .product-specs-right::after {
        display: none;
    }

    .vertical-text {
        position: static;
        transform: none;
        display: block;
        margin-top: 15px;
        text-align: right;
    }
}

@media (max-width: 576px) {
    .thumbnail {
        width: 32%;
    }
}
