:root {
    --primary-color: #fc5021;
    --primary-color-low: rgba(252, 80, 33, 0.5);
    --primary-color-dark: #d43f0b;
    --secondary-color: #adb5bd;
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;
    --tertiary-color: #e9ecef;
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;
    --bg-color: #f7f7fa;
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e4e7eb;
    --text-dark: #343a40;
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;
    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;
    --button-color: #02337c;
    --button-color-low: rgba(2, 51, 124, 0.5);
    --button-color-dark: #001a4d;
    --card-bg: #ffffff;
    --card-bg-low: #f3f2f2;
    --smoothline-color: var(--bg-color);
}

.productSection {
    padding: 0.5rem 0;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    height: auto;
}

.productSection .breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.productSection .breadcrumbs a,
.productSection .breadcrumbs span {
    color: var(--text-dark-low);
    font-size: 0.9rem;
    text-decoration: none;
}

.productSection .breadcrumbs span {
    color: var(--primary-color);
}

.productSection .breadcrumbs a:hover {
    color: var(--primary-color);
}

.productSection .breadcrumbs i {
    color: var(--text-dark-low);
    font-size: 0.7rem;
}

.productSection .productTop {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    gap: 1rem;
}

.productSection .productTop .imageArea {
    grid-column: span 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.productSection .productTop .imageArea .imageCard {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: sticky;
    top: 1rem;
}

.productSection .productTop .imageArea .mainImage {
    width: 100%;
    height: 390px;
    background: var(--card-bg);
    position: relative;
    border-radius: 5px;
}

.productSection .productTop .imageArea .mainImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.productSection .productTop .imageArea .mainImage .favBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #f1f1f1;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
}

.productSection .productTop .imageArea .mainImage .favBtn i {
    color: var(--text-dark-low);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.productSection .productTop .imageArea .mainImage .favBtn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.productSection .productTop .imageArea .mainImage .favBtn:hover i {
    color: var(--text-light);
}

.productSection .productTop .imageArea .previews {
    gap: 0.5rem;
    background: var(--card-bg);
    border-radius: 5px;
    padding: 0.5rem;
}

.productSection .productTop .imageArea .previews .flickity-button {
    background: var(--card-bg);
    border-radius: 5px;
    width: 20px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.productSection .productTop .imageArea .previews .flickity-button.previous {
    left: 0;
}

.productSection .productTop .imageArea .previews .flickity-button.next {
    right: 0;
}

.productSection .productTop .imageArea .previews .previewItem {
    width: 80px;
    height: 80px;
    background: #f1f1f1;
    border-radius: 5px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.productSection .productTop .imageArea .previews .previewItem:hover,
.productSection .productTop .imageArea .previews .previewItem.active,
.productSection .productTop .imageArea .previews .previewItem.is-selected {
    border-color: var(--primary-color, #fc5021);
    transform: scale(1.05);
}

.productSection .productTop .imageArea .previews .previewItem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}


.productSection .productTop .infoArea {
    grid-column: span 5;
}

.productSection .productTop .infoArea .infoAreaContent {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 0.5rem;
    width: 100%;
    position: sticky;
    top: 1rem;
}

.productSection .productTop .infoArea .infoCard {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: 5px;
    height: fit-content;
    padding: 1rem;
}

.productSection .productTop .infoArea .pbrand {
    display: flex;
    align-items: center;
    position: relative;
}

.productSection .productTop .infoArea .pbrand .pbrandName {
    font-size: 0.9rem;
    background: var(--text-dark);
    color: var(--text-light);
    width: max-content;
    border-radius: 5px;
    padding: 0.2rem 0.5rem;
    margin-bottom: 0.2rem;
    z-index: 1;
    margin-left: 0.5rem;
    padding-left: 0.8rem;
}

.productSection .productTop .infoArea .pbrand .icon {
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
    position: absolute;
    z-index: 3;
    width: 20px;
    height: 20px;
    top: 45%;
    left: -2px;
    transform: translateY(-50%);
}

.productSection .productTop .infoArea .pbrand .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.productSection .productTop .infoArea .pbrand .pbrandTop {
    background: var(--text-dark-low);
    color: var(--text-light);
    font-size: 0.8rem;
    border-radius: 2px;
    padding: 0rem 0.5rem;
    padding-left: 10px;
    margin-left: -5px;
    position: relative;
    top: -1px;
}

.productSection .productTop .infoArea .pbrand .pbrandTop i {
    color: var(--text-light);
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.productSection .productTop .infoArea .pbrand .pbrandTop:hover i {
    margin-left: 0.2rem;
}


.productSection .productTop .infoArea .pname {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.productSection .productTop .infoArea .priceBox {
    display: flex;
    flex-direction: column;
}

.productSection .productTop .infoArea .priceBox .price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.productSection .productTop .infoArea .priceBox .price .oldPrice {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark-low);
    text-decoration: line-through;
    margin-top: 0.2rem;
}

.productSection .productTop .infoArea .priceBox .price .newPrice {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.productSection .productTop .infoArea .priceBox .price .info {
    position: relative;
    margin-top: 0.2rem;
}

.productSection .productTop .infoArea .priceBox .price .info .infoBtn {
    cursor: pointer;
}

.productSection .productTop .infoArea .priceBox .price .info .infoBtn i {
    font-size: 0.9rem;
    color: var(--text-dark-low);
}

.productSection .productTop .infoArea .priceBox .price .info .infoBubble {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.2rem 0.5rem;
    width: max-content;
    border-radius: 5px 5px 5px 5px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    display: flex;
    transition: all 0.3s ease;
    cursor: pointer;
}

.productSection .productTop .infoArea .priceBox .price .info .infoBubble::before {
    content: '';
    position: absolute;
    top: 98%;
    left: 2.5px;
    border-width: 5px;
    height: 20px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}

.productSection .productTop .infoArea .priceBox .price .info .infoBubble .bubbleText {
    font-size: 0.8rem;
    color: var(--text-light);
}

.productSection .productTop .infoArea .priceBox .price .info:hover .infoBubble {
    opacity: 1;
}

.productSection .productTop .infoArea .priceBox .saving {
    display: flex;
    align-items: center;
}

.productSection .productTop .infoArea .priceBox .saving .savingText {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    margin-right: 0.2rem;
}

.productSection .productTop .infoArea .priceBox .saving .savingValue {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3caf0a;
    margin-left: 0.2rem;
}

.productSection .productTop .infoArea .priceBox .saving .savingPercent {
    font-size: 0.8rem;
    color: #3caf0a;
    background: #dff1d9;
    padding: 0.1rem 0.3rem;
    border-radius: 2px;
    margin-left: 0.2rem;
}

.productSection .productTop .infoArea .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
}

.productSection .productTop .infoArea .features .featureItem {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-dark-low);
    padding: 0.5rem 0.5rem;
    background: #f1f1f1;
    border-radius: 5px;
}

.productSection .productTop .infoArea .features .featureItem .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    padding: 0.2rem;
}

.productSection .productTop .infoArea .features .featureItem .logo i {
    font-size: 0.6rem;
    color: var(--text-light);
}

.productSection .productTop .infoArea .features .featureItem .logoText {
    font-size: 0.8rem;
    color: var(--text-dark-low);
}


.productSection .productTop .infoArea .productActions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.productSection .productTop .infoArea .goToStore {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.productSection .productTop .infoArea .goToStore .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    padding: 0.2rem;
    z-index: 1;
}

.productSection .productTop .infoArea .goToStore .icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.productSection .productTop .infoArea .goToStore .text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--text-dark-low);
    padding: 0.2rem 0.5rem;
    margin-left: -1.2rem;
    padding-left: 1.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.productSection .productTop .infoArea .goToStore .text img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.productSection .productTop .infoArea .websiteMessage {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 5px;
    position: relative;
}


.productSection .productTop .infoArea .websiteMessage .message i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.productSection .productTop .infoArea .websiteMessage .message {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    text-align: start;
}

.productSection .productTop .infoArea .websiteMessage .message strong {
    font-weight: 600;
    color: var(--primary-color);
}

.productSection .productTop .bannerArea {
    grid-column: span 4;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.productSection .productTop .bannerArea .cardHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    border-radius: 5px;
    padding: 0.2rem 0.5rem;
}

.productSection .productTop .bannerArea .cardHeader h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.productSection .productTop .bannerArea .cardHeader h3 span {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    margin-left: 0.5rem;
}

.productSection .productTop .bannerArea .cardHeader a {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

.productSection .productTop .bannerArea .sellerCard {
    width: 100%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: var(--card-bg);
}

.productSection .productTop .bannerArea .sellerCard .banner {
    width: 100%;
    height: 130px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f1f1;
    border-radius: 5px;
    position: relative;
    margin-bottom: 1.5rem;
}


.productSection .productTop .bannerArea .sellerCard .banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.productSection .productTop .bannerArea .sellerCard .banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}


.productSection .productTop .bannerArea .sellerCard .banner .logo {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: #f1f1f1;
    border: 5px solid var(--card-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.productSection .productTop .bannerArea .sellerCard .banner .logo .logoInner {
    position: relative;
    width: 100%;
    height: 100%;
}


.productSection .productTop .bannerArea .sellerCard .banner .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--bg-color-dark);
}

.productSection .productTop .bannerArea .sellerCard .banner .logo .check {
    position: absolute;
    bottom: 0;
    right: -7px;
    width: 30px;
    height: 30px;
    padding: 0.3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--card-bg);
    border: 2px solid var(--bg-color-dark);
}

.productSection .productTop .bannerArea .sellerCard .banner .logo .check img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: none;
}

.productSection .productTop .bannerArea .sellerCard .info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.productSection .productTop .bannerArea .sellerCard .info .sellerRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.productSection .productTop .bannerArea .sellerCard .info .name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.productSection .productTop .bannerArea .sellerCard .info .sellerCount {
    font-size: 0.8rem;
    color: var(--text-dark-low);
}

.productSection .productTop .bannerArea .sellerCard .info .sellerCount strong {
    font-weight: 600;
    color: var(--primary-color);
}

.productSection .productTop .bannerArea .sellerCard .info .description {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    text-align: start;
}

.productSection .productTop .bannerArea .sellerCard .info .pricing {
    display: flex;
    flex-direction: column;
}

.productSection .productTop .bannerArea .sellerCard .info .pricing .price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.productSection .productTop .bannerArea .sellerCard .info .pricing .price .nowPrice {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.productSection .productTop .bannerArea .sellerCard .info .pricing .price .oldPrice {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dark-low);
    text-decoration: line-through;
}

.productSection .productTop .bannerArea .sellerCard .info .pricing .saving {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.productSection .productTop .bannerArea .sellerCard .info .pricing .saving .savingText {
    font-size: 0.8rem;
    color: var(--text-dark-low);
}

.productSection .productTop .bannerArea .sellerCard .info .pricing .saving .savingValue {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3caf0a;
}

.productSection .productTop .bannerArea .sellerCard .info .pricing .saving .savingPercent {
    font-size: 0.7rem;
    color: #3caf0a;
    background: #dff1d9;
    padding: 0.1rem 0.3rem;
    border-radius: 2px;
}

.productSection .productTop .bannerArea .sellerCard .info .actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.5rem;
}

.productSection .productTop .bannerArea .sellerCard .info .actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.2rem 1rem;
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.productSection .productTop .bannerArea .sellerCard .info .actions .btn i {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.productSection .productTop .bannerArea .sellerCard .info .actions .btn:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.productSection .productTop .bannerArea .sellerCard .info .actions .btn:hover i {
    margin-left: 0.5rem;
}

/* Mini Seller Card Styles */
.productSection .productTop .bannerArea .miniSellerCard {
    width: 100%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
    background: var(--card-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
}

.productSection .productTop .bannerArea .miniSellerCard .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.productSection .productTop .bannerArea .miniSellerCard .logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--tertiary-color);
}

.productSection .productTop .bannerArea .miniSellerCard .logo .name {
    display: flex;
    flex-direction: column;
}

.productSection .productTop .bannerArea .miniSellerCard .logo .name span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.productSection .productTop .bannerArea .miniSellerCard .info {
    width: 100%;
}

.productSection .productTop .bannerArea .miniSellerCard .info .sellerRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.productSection .productTop .bannerArea .miniSellerCard .info .pricing {
    display: flex;
    flex-direction: column;
}

.productSection .productTop .bannerArea .miniSellerCard .info .pricing .price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.productSection .productTop .bannerArea .miniSellerCard .info .pricing .price .nowPrice {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.productSection .productTop .bannerArea .miniSellerCard .info .pricing .price .oldPrice {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    text-decoration: line-through;
}

.productSection .productTop .bannerArea .miniSellerCard .info .pricing .saving {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.productSection .productTop .bannerArea .miniSellerCard .info .pricing .saving .savingText {
    font-size: 0.75rem;
    color: var(--text-dark-low);
}

.productSection .productTop .bannerArea .miniSellerCard .info .pricing .saving .savingValue {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3caf0a;
}

.productSection .productTop .bannerArea .miniSellerCard .info .pricing .saving .savingPercent {
    font-size: 0.7rem;
    color: #3caf0a;
    background: #dff1d9;
    padding: 0.1rem 0.3rem;
    border-radius: 2px;
}

.productSection .productTop .bannerArea .miniSellerCard .info .actions {
    display: flex;
    align-items: center;
}

.productSection .productTop .bannerArea .miniSellerCard .info .actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.productSection .productTop .bannerArea .miniSellerCard .info .actions .btn i {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.productSection .productTop .bannerArea .miniSellerCard .info .actions .btn:hover {
    background: var(--primary-color-dark);
}

.productSection .productTop .bannerArea .miniSellerCard .info .actions .btn:hover i {
    transform: translateX(2px);
}



.productSection .productTop .bannerArea .securityCard {
    width: 100%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border: 1px solid #ffd4c4;
    box-shadow: 0 2px 8px rgba(252, 80, 33, 0.1);
}

.productSection .productTop .bannerArea .securityCard .cardHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.2rem 0;
    background: none;
}

.productSection .productTop .bannerArea .securityCard .cardHeader h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fc5021;
}

.productSection .productTop .bannerArea .securityCard .cardHeader h3 i {
    font-size: 1rem;
    color: #e64915;
    margin-right: 0.5rem;
}

.productSection .productTop .bannerArea .securityCard .cardBody {
    width: 100%;
}

.productSection .productTop .bannerArea .securityCard .cardBody p {
    font-size: 0.9rem;
    color: #5a3828;
    text-align: left;
    line-height: 1.6;
}



.productSection .productDescriptionSection {
    padding: 1rem;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

/* Product Description Section */
.productSection .productDescriptionSection .cardHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--tertiary-color);
    padding-bottom: 0.5rem;
}

.productSection .productDescriptionSection .cardHeader h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.productSection .productDescriptionSection .cardBody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.productSection .productDescriptionSection .cardBody p {
    font-size: 0.9rem;
    color: var(--text-dark-low);
    line-height: 1.6;
}

.productSection .productDescriptionSection .cardBody ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.productSection .productDescriptionSection .cardBody ul li {
    font-size: 0.9rem;
    color: var(--text-dark-low);
    padding: 0.3rem 0;
}

.productSection .productDescriptionSection .cardBody ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1.5rem;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1400px) {
    .productSection .productTop .imageArea .mainImage {
        height: 350px;
    }

    .productSection .productTop .imageArea .previews .previewItem {
        width: 70px;
        height: 70px;
    }

    .productSection .productTop .infoArea .pname {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 1200px) {
    .productSection .productTop {
        grid-template-columns: repeat(12, 1fr);
    }

    .productSection .productTop .imageArea {
        grid-column: span 5;
    }

    .productSection .productTop .infoArea {
        grid-column: span 4;
    }

    .productSection .productTop .bannerArea {
        grid-column: span 3;
    }

    .productSection .productTop .imageArea .mainImage {
        height: 320px;
    }

    .productSection .productTop .infoArea .pname {
        font-size: 1.3rem;
    }

    .productSection .productTop .bannerArea .sellerCard .banner {
        height: 110px;
    }

    .productSection .productTop .bannerArea .sellerCard .banner .logo {
        width: 80px;
        height: 80px;
        bottom: -25px;
    }
}

@media screen and (max-width: 992px) {
    .productSection .productTop {
        grid-template-columns: repeat(2, 1fr);
    }

    .productSection .productTop .imageArea {
        grid-column: span 1;
    }

    .productSection .productTop .infoArea {
        grid-column: span 1;
    }

    .productSection .productTop .bannerArea {
        grid-column: span 2;
        margin-top: 1rem;
    }

    .productSection .productTop .bannerArea .sellerCard {
        padding: 0.8rem;
    }

    .productSection .productTop .infoArea .priceBox .price .newPrice {
        font-size: 1.2rem;
    }

    .productSection .productTop .infoArea .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .productSection .productTop .imageArea .mainImage {
        height: 300px;
    }

    .productSection .productDescriptionSection .cardBody p,
    .productSection .productDescriptionSection .cardBody ul li {
        font-size: 0.85rem;
    }

    .productSection .breadcrumbs {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .productSection .productTop {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .productSection .productTop .imageArea,
    .productSection .productTop .infoArea,
    .productSection .productTop .bannerArea {
        grid-column: span 1;
    }

    .productSection .productTop .imageArea .imageCard {
        position: relative;
        top: 0;
    }

    .productSection .productTop .infoArea .infoAreaContent {
        position: relative;
        top: 0;
    }

    .productSection .productTop .imageArea .mainImage {
        height: 350px;
    }

    .productSection .productTop .imageArea .mainImage .favBtn {
        width: 25px;
        height: 25px;
        padding: 0.8rem;
    }

    .productSection .productTop .infoArea .pname {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .productSection .productTop .infoArea .pbrand .pbrandName {
        font-size: 0.8rem;
    }

    .productSection .productTop .infoArea .pbrand .icon {
        width: 18px;
        height: 18px;
    }

    .productSection .productDescriptionSection {
        padding: 0.8rem;
    }

    .productSection .productDescriptionSection .cardHeader h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .productSection {
        padding: 0.3rem 0;
    }

    .productSection .breadcrumbs {
        margin-bottom: 0.3rem;
        padding: 0 0.5rem;
    }

    .productSection .breadcrumbs a,
    .productSection .breadcrumbs span {
        font-size: 0.8rem;
    }

    .productSection .productTop {
        gap: 0.6rem;
    }

    .productSection .productTop .imageArea .mainImage {
        height: 280px;
    }

    .productSection .productTop .imageArea .previews .previewItem {
        width: 60px;
        height: 60px;
    }

    .productSection .productTop .infoArea .infoCard {
        padding: 0.8rem;
    }

    .productSection .productTop .infoArea .pname {
        font-size: 1.1rem;
    }

    .productSection .productTop .infoArea .priceBox .price .newPrice {
        font-size: 1.1rem;
    }

    .productSection .productTop .infoArea .features {
        grid-template-columns: 1fr;
        margin-top: 0.8rem;
    }

    .productSection .productTop .infoArea .goToStore .icon {
        width: 40px;
        height: 40px;
    }

    .productSection .productTop .infoArea .goToStore .icon i {
        font-size: 1.2rem;
    }

    .productSection .productTop .infoArea .goToStore .text {
        font-size: 0.9rem;
    }

    .productSection .productTop .bannerArea .sellerCard .info .name {
        font-size: 1.1rem;
    }

    .productSection .productTop .bannerArea .sellerCard .info .actions .btn {
        padding: 0.2rem 0.8rem;
        font-size: 0.65rem;
    }

    .productSection .productDescriptionSection .cardHeader h3 {
        font-size: 1rem;
    }

    .productSection .productDescriptionSection .cardBody p,
    .productSection .productDescriptionSection .cardBody ul li {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 400px) {
    .productSection .productTop .imageArea .mainImage {
        height: 250px;
    }

    .productSection .productTop .imageArea .previews .previewItem {
        width: 50px;
        height: 50px;
        margin: 0 3px;
    }

    .productSection .productTop .infoArea .pname {
        font-size: 1rem;
    }

    .productSection .productTop .infoArea .priceBox .price .newPrice {
        font-size: 1rem;
    }

    .productSection .productTop .infoArea .priceBox .price .oldPrice {
        font-size: 0.7rem;
    }

    .productSection .productTop .infoArea .features .featureItem {
        font-size: 0.7rem;
        padding: 0.4rem 0.4rem;
    }

    .productSection .productTop .infoArea .features .featureItem .logo {
        width: 22px;
        height: 22px;
    }

    .productSection .productTop .infoArea .websiteMessage .message {
        font-size: 0.7rem;
    }

    .productSection .productTop .bannerArea .sellerCard {
        padding: 0.6rem;
    }

    .productSection .productTop .bannerArea .miniSellerCard .logo img {
        width: 50px;
        height: 50px;
    }

    .productSection .productTop .bannerArea .miniSellerCard .logo .name span {
        font-size: 1rem;
    }
}

@media screen and (max-width: 350px) {
    .productSection .productTop .imageArea .mainImage {
        height: 220px;
    }

    .productSection .productTop .infoArea .productActions {
        flex-direction: column;
        gap: 0.4rem;
    }

    .productSection .productTop .infoArea .pname {
        font-size: 0.9rem;
    }

    .productSection .productTop .infoArea .priceBox .price .newPrice {
        font-size: 0.95rem;
    }

    .productSection .productTop .bannerArea .cardHeader h3 {
        font-size: 1rem;
    }

    .productSection .productTop .bannerArea .miniSellerCard .info .pricing .price .nowPrice {
        font-size: 0.95rem;
    }
}

/* Store List Styles */
.productSection .storeList {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.productSection .storeList .storeListHeader {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--tertiary-color);
}

.productSection .storeList .storeListHeader h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.productSection .storeList .storeListHeader p {
    font-size: 0.9rem;
    color: var(--text-dark-low);
}

.productSection .storeList .storeListContainer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.productSection .storeList .storeCards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.productSection .storeList .storeCard {
    background: var(--card-bg);
    border-radius: 5px;
    padding: 1rem 1rem 1rem 3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    position: relative;
}

.productSection .storeList .storeCard:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.productSection .storeList .storeCard .storeInfo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
}

.productSection .storeList .storeCard .storeLogo {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    flex-shrink: 0;
}

.productSection .storeList .storeCard .storeLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 2px;
}

.productSection .storeList .storeCard .storeDetails {
    flex: 1;
    min-width: 0;
}

.productSection .storeList .storeCard .storeName {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.productSection .storeList .storeCard .storeName .badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: linear-gradient(135deg, #fc5021 0%, #ff7849 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.productSection .storeList .storeCard .storeFeatures {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.productSection .storeList .storeCard .feature {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.7rem;
    color: var(--text-dark-low);
}

.productSection .storeList .storeCard .feature i {
    font-size: 0.7rem;
    color: #fc5021;
}

.productSection .storeList .storeCard .priceInfo {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.3rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.productSection .storeList .storeCard .currentPrice {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fc5021;
    white-space: nowrap;
}

.productSection .storeList .storeCard .oldPrice {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    text-decoration: line-through;
}

.productSection .storeList .storeCard .discount {
    background: #dff1d9;
    color: #2e7d32;
    padding: 0.1rem 0.3rem;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
}

.productSection .storeList .storeCard .storeButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #fc5021;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(252, 80, 33, 0.2);
}

.productSection .storeList .storeCard .storeButton:hover {
    background: #e04819;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(252, 80, 33, 0.3);
}

.productSection .storeList .storeCard .storeButton i {
    font-size: 0.75rem;
}

/* Store List Sidebar */
.productSection .storeList .storeListSidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.productSection .storeList .storeInfoCard {
    background: var(--card-bg);
    border-radius: 5px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.productSection .storeList .storeInfoCard .cardHeader {
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--tertiary-color);
}

.productSection .storeList .storeInfoCard .cardHeader h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.productSection .storeList .storeInfoCard .cardHeader h3 i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.productSection .storeList .storeInfoCard .cardBody {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    line-height: 1.5;
}

.productSection .storeList .storeInfoCard .infoItem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
}

.productSection .storeList .storeInfoCard .infoItem:last-child {
    margin-bottom: 0;
}

.productSection .storeList .storeInfoCard .infoItem i {
    font-size: 0.7rem;
    color: var(--primary-color);
    width: 12px;
}

.productSection .storeList .storeInfoCard .benefitsList {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.productSection .storeList .storeInfoCard .benefit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
}

.productSection .storeList .storeInfoCard .benefit i {
    font-size: 0.65rem;
    color: var(--primary-color);
    width: 10px;
}

.productSection .storeList .storeInfoCard .priceTrend {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.productSection .storeList .storeInfoCard .trendItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.productSection .storeList .storeInfoCard .trendItem .label {
    color: var(--text-dark-low);
}

.productSection .storeList .storeInfoCard .trendItem .value {
    font-weight: 600;
    color: var(--primary-color);
}

.productSection .storeList .storeInfoCard .savings {
    margin-top: 0.8rem;
    padding: 0.5rem;
    background: var(--bg-color);
    border-radius: 3px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dark);
}

.productSection .storeList .storeInfoCard .savings strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Store List Responsive Styles */
@media screen and (max-width: 1200px) {
    .productSection .storeList .storeListContainer {
        gap: 1.5rem;
    }

    .productSection .storeList .storeCard {
        padding: 0.8rem;
        gap: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .productSection .storeList {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .productSection .storeList .storeListHeader {
        margin-bottom: 1.5rem;
    }

    .productSection .storeList .storeListHeader h3 {
        font-size: 1.2rem;
    }

    .productSection .storeList .storeListContainer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .productSection .storeList .storeCard {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding: 0.8rem;
    }

    .productSection .storeList .storeCard .storeInfo {
        justify-content: center;
        width: 100%;
    }

    .productSection .storeList .storeCard .priceInfo {
        width: 100%;
        justify-content: center;
    }

    .productSection .storeList .storeCard .storeButton {
        width: 100%;
        padding: 0.6rem 1rem;
    }
}

@media screen and (max-width: 576px) {
    .productSection .storeList {
        padding: 0.8rem;
        margin-top: 1rem;
    }

    .productSection .storeList .storeCard {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .productSection .storeList .storeCard .storeInfo {
        gap: 0.6rem;
    }

    .productSection .storeList .storeCard .storeLogo {
        width: 40px;
        height: 40px;
    }

    .productSection .storeList .storeCard .storeName {
        font-size: 0.9rem;
    }

    .productSection .storeList .storeCard .currentPrice {
        font-size: 1rem;
    }

    .productSection .storeList .storeCard .priceInfo {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .productSection .storeList .storeCard .storeFeatures {
        justify-content: center;
        gap: 0.5rem;
    }

    .productSection .storeList .storeCard .storeButton {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 400px) {
    .productSection .storeList .storeListHeader h3 {
        font-size: 1.1rem;
    }

    .productSection .storeList .storeCard .storeLogo {
        width: 35px;
        height: 35px;
    }

    .productSection .storeList .storeCard .storeName {
        font-size: 0.85rem;
    }

    .productSection .storeList .storeCard .currentPrice {
        font-size: 0.95rem;
    }
}

/* ========================================
   STORE PRICE UPDATE ANIMATIONS
   ======================================== */

/* Store Card Update Animations */
.storeCard {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.storeCard.updating {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(252, 80, 33, 0.2);
    border-color: var(--primary-color);
}

.storeCard.updating::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 80, 33, 0.1), transparent);
    animation: shimmer 1s ease-in-out;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Price Info Animation */
.priceInfo {
    position: relative;
    overflow: hidden;
}

.priceInfo.updating {
    background: rgba(252, 80, 33, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    margin: -0.5rem;
}

/* Current Price Animation */
.currentPrice {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.currentPrice.updating {
    transform: scale(1.1);
    color: var(--primary-color);
    font-weight: 700;
}

.currentPrice.price-change {
    animation: priceUpdate 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes priceUpdate {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.15) translateY(-5px);
        opacity: 0.7;
        color: var(--primary-color);
        text-shadow: 0 2px 4px rgba(252, 80, 33, 0.3);
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Old Price Animation */
.oldPrice {
    transition: all 0.3s ease;
    position: relative;
}

.oldPrice.updating {
    opacity: 0.7;
    transform: scale(0.95);
}

/* Discount Badge Animation */
.discount {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.discount.updating {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(252, 80, 33, 0.4);
}

.discount.discount-change {
    animation: discountPulse 0.8s ease;
}

@keyframes discountPulse {
    0% {
        transform: scale(1);
        background: var(--primary-color);
    }

    25% {
        transform: scale(1.2);
        background: #ff6b3d;
        box-shadow: 0 4px 12px rgba(252, 80, 33, 0.6);
    }

    50% {
        transform: scale(1.1);
        background: var(--primary-color);
    }

    75% {
        transform: scale(1.15);
        background: #ff6b3d;
    }

    100% {
        transform: scale(1);
        background: var(--primary-color);
    }
}

/* Success Flash Animation */
.storeCard.price-updated {
    animation: successFlash 1s ease;
}

@keyframes successFlash {
    0% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
        border-color: #2ecc71;
    }

    100% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Store Number Badge */
.store-number {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fc5021 0%, #ff7849 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(252, 80, 33, 0.3);
    z-index: 10;
    border: 3px solid white;
}

/* Lowest Price Store Animation */
.storeCard.lowest-price {
    position: relative;
    border: 2px solid #fc5021;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    animation: lowestPricePulse 2s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(252, 80, 33, 0.3);
}

.storeCard.lowest-price .store-number {
    background: linear-gradient(135deg, #fc5021 0%, #ff7849 100%);
    box-shadow: 0 4px 12px rgba(252, 80, 33, 0.5);
    animation: numberGlow 2s ease-in-out infinite;
    font-size: 1rem;
    border-color: #fc5021;
}

@keyframes lowestPricePulse {
    0% {
        box-shadow: 0 6px 20px rgba(252, 80, 33, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(252, 80, 33, 0.5);
    }

    100% {
        box-shadow: 0 6px 20px rgba(252, 80, 33, 0.3);
    }
}

@keyframes numberGlow {
    0% {
        box-shadow: 0 4px 12px rgba(252, 80, 33, 0.5);
    }

    50% {
        box-shadow: 0 6px 20px rgba(252, 80, 33, 0.8), 0 0 15px rgba(252, 80, 33, 0.4);
    }

    100% {
        box-shadow: 0 4px 12px rgba(252, 80, 33, 0.5);
    }
}

/* Best Price Badge */
.best-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #fc5021 0%, #ff7849 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
    animation: badgeShine 2s ease-in-out infinite;
    z-index: 5;
}

.best-price-badge i {
    font-size: 0.85rem;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@keyframes badgeShine {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

/* Loading State */
.priceInfo.loading {
    position: relative;
}

.priceInfo.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.priceInfo.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Number Counter Animation */
.price-counter {
    display: inline-block;
    overflow: hidden;
}

.price-digit {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.price-digit.flip {
    animation: digitFlip 0.4s ease;
}

@keyframes digitFlip {
    0% {
        transform: rotateX(0);
    }

    50% {
        transform: rotateX(90deg);
    }

    100% {
        transform: rotateX(0);
    }
}

/* Responsive Animations */
@media (max-width: 768px) {
    .storeCard.updating {
        transform: scale(1.01);
    }

    .currentPrice.updating {
        transform: scale(1.05);
    }

    .discount.updating {
        transform: scale(1.05);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .storeCard,
    .priceInfo,
    .currentPrice,
    .oldPrice,
    .discount {
        animation: none !important;
        transition: none !important;
    }

    .storeCard.updating {
        animation: none !important;
    }
}

/* Son Gezdiğin Ürünler Bölümü */
.recentlyViewedSection {
    margin-top: 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.recentlyViewedSection .cardHeader {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--tertiary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
}

.recentlyViewedSection .cardHeader h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recentlyViewedSection .cardHeader h3::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
}

.recentlyViewedSection .cardBody {
    padding: 1.5rem;
}

.recentlyViewedSection .productGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.recentlyViewedSection .productCard {
    background: var(--card-bg);
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.recentlyViewedSection .productCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.recentlyViewedSection .productCard .productLink {
    text-decoration: none;
    color: inherit;
    display: block;
}

.recentlyViewedSection .productCard .imageArea {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.recentlyViewedSection .productCard .imageCard {
    width: 100%;
    height: 100%;
    position: relative;
}

.recentlyViewedSection .productCard .imageCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recentlyViewedSection .productCard:hover .imageCard img {
    transform: scale(1.05);
}

.recentlyViewedSection .productCard .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recentlyViewedSection .productCard:hover .overlay {
    opacity: 1;
}

.recentlyViewedSection .productCard .overlayContent {
    text-align: center;
}

.recentlyViewedSection .productCard .overlayBtn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.recentlyViewedSection .productCard .overlayBtn:hover {
    background: var(--primary-color-dark);
    transform: scale(1.1);
}

.recentlyViewedSection .productCard .contentArea {
    padding: 1rem;
}

.recentlyViewedSection .productCard .pTitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recentlyViewedSection .productCard .priceArea {
    margin-bottom: 0.5rem;
}

.recentlyViewedSection .productCard .nowPrice {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recentlyViewedSection .productCard .currency {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.recentlyViewedSection .productCard .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.recentlyViewedSection .productCard .categoryName {
    margin-top: 0.5rem;
}

.recentlyViewedSection .productCard .categoryName span {
    background: var(--tertiary-color);
    color: var(--text-dark-low);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Tasarım */
@media screen and (max-width: 1200px) {
    .recentlyViewedSection .productGrid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .recentlyViewedSection {
        margin-top: 1.5rem;
    }

    .recentlyViewedSection .cardHeader {
        padding: 1rem;
    }

    .recentlyViewedSection .cardHeader h3 {
        font-size: 1.1rem;
    }

    .recentlyViewedSection .cardBody {
        padding: 1rem;
    }

    .recentlyViewedSection .productGrid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }

    .recentlyViewedSection .productCard .imageArea {
        height: 160px;
    }

    .recentlyViewedSection .productCard .contentArea {
        padding: 0.75rem;
    }

    .recentlyViewedSection .productCard .pTitle {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .recentlyViewedSection .productGrid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.5rem;
    }

    .recentlyViewedSection .productCard .imageArea {
        height: 140px;
    }

    .recentlyViewedSection .productCard .contentArea {
        padding: 0.5rem;
    }

    .recentlyViewedSection .productCard .pTitle {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .recentlyViewedSection .productCard .price {
        font-size: 1rem;
    }
}

@media screen and (max-width: 400px) {
    .recentlyViewedSection .productGrid {
        grid-template-columns: 1fr;
    }

    .recentlyViewedSection .productCard .imageArea {
        height: 180px;
    }
}

/* =====================
   PRODUCT COMMENTS SECTION
   ===================== */

.product-comments-section {
    margin-top: 40px;
    padding: 20px 0;
    background: var(--bg-color);
    width: 100%;
	height:max-content;
}

.product-comments-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Comments Header */
.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--tertiary-color);
}

.comments-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comments-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.comments-count {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 8px;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .fa-star {
    font-size: 1.25rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.rating-stars .fa-star.active {
    color: #ffc107;
}

.rating-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Product Viewers Count - Below Security Card */
.product-viewers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid var(--tertiary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.product-viewers:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.product-viewers i {
    color: var(--primary-color);
    font-size: 1rem;
}

.product-viewers span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Fake View Count - Comments Section (Legacy - can be removed if not used) */
.fake-view-count {
    margin-bottom: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--tertiary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fake-view-count i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.fake-view-count span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Add Comment Form */
.add-comment-form {
    margin-bottom: 30px;
    padding: 24px;
    background: var(--card-bg);
    background-color: #fff;
    border: 1px solid var(--tertiary-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.add-comment-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--tertiary-color);
}

.add-comment-form .form-group {
    margin-bottom: 20px;
}

.add-comment-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.add-comment-form .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.add-comment-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-color-low);
}

.add-comment-form .form-control::placeholder {
    color: var(--text-dark-low);
}

.add-comment-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.add-comment-form select.form-control {
    cursor: pointer;
}

/* Rating Selector */
.rating-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars-input {
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.rating-stars-input .fa-star {
    font-size: 2rem;
    color: #ddd;
    transition: all 0.2s ease;
    cursor: pointer;
}

.rating-stars-input .fa-star:hover {
    color: #ffc107;
    transform: scale(1.1);
}

.rating-stars-input .fa-star.active {
    color: #ffc107;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 100px;
}

/* Responsive adjustments for rating selector */
@media screen and (max-width: 768px) {
    .rating-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rating-stars-input .fa-star {
        font-size: 1.5rem;
    }

    .rating-text {
        min-width: auto;
    }
}

.add-comment-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(252, 80, 33, 0.2);
}

.add-comment-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(252, 80, 33, 0.3);
}

.add-comment-form .btn-primary:active {
    transform: translateY(0);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    padding: 20px;
    margin-bottom: 20px;
    background: var(--card-bg);
    background-color: #fff;
    border: 1px solid var(--tertiary-color);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.comment-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--tertiary-color);
}

.comment-header strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.comment-rating {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.comment-rating .fa-star {
    font-size: 1rem;
    color: #ddd;
}

.comment-rating .fa-star.active {
    color: #ffc107;
}

.comment-header span {
    color: var(--text-dark-low);
    font-size: 0.875rem;
    white-space: nowrap;
}

.comment-item h4 {
    margin: 12px 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.comment-item p {
    color: var(--text-dark-low);
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-size: 0.95rem;
}

.comment-actions {
    margin-top: 12px;
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--tertiary-color);
}

.comment-actions button {
    background: none;
    border: none;
    color: var(--text-dark-low);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-actions button:hover {
    background: var(--tertiary-color);
    color: var(--text-dark);
}

.comment-actions button i {
    font-size: 0.875rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .product-viewers {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        margin-bottom: 16px;
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .product-viewers i {
        font-size: 0.9rem;
    }

    .comments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .average-rating {
        width: 100%;
        justify-content: space-between;
    }

    .add-comment-form {
        padding: 20px;
    }

    .comment-item {
        padding: 16px;
    }

    .comment-header {
        flex-direction: column;
        gap: 8px;
    }

    .comment-actions {
        flex-direction: column;
        gap: 8px;
    }

    .comment-actions button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .comments-title {
        font-size: 1.5rem;
    }

    .fake-view-count {
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    .add-comment-form {
        padding: 16px;
    }

    .add-comment-form h3 {
        font-size: 1.25rem;
    }

    .comment-item {
        padding: 12px;
    }
}