*{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    color: #eeebeb;
    font-size: 15px;
    background: #fff;
}
header.navbar,
.navbar {
    position: sticky;
    /*font-family: "Tahoma", sans-serif;*/
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    box-shadow: 0px 4px 12px rgba(247, 245, 245, 0.3);
    z-index: 1000;
    gap: 20px;
}

.navbar-top-note {
    width: 100%;
    background: linear-gradient(90deg, #ff7c02, #ff9800);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    line-height: 1.5;
    overflow: hidden;
    position: relative;
}

.navbar-top-note__track {
    display: flex;
    width: max-content;
    --ticker-shift: -50%;
    animation: news-ticker 28s linear infinite;
}

.navbar-top-note__item,
.navbar-top-note__clone {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 32px;
    font-size: inherit;
}

@keyframes news-ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(var(--ticker-shift)); }
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 124, 2, 0.5);
    background: transparent;
    padding: 0;
}

.navbar__toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.navbar.is-open .navbar__toggle span:nth-child(2) {
    opacity: 0;
}

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

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    font-size: medium;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.navbar a {
    color: #fff;
    text-decoration: none;
}

.dropbtn {
    font-size: 15px;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
}

.dropbtn-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropbtn-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropbtn-content {
    display: block;
}

.cart-item {
    background: #fff;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
}

button {
    background: #7fbbfb;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 75px;
    height: 75px;
    background-color: #000000;
    object-fit: contain;
}

.navbar h2 {
    font-size: 15px;
    color: #ffffff;
    background-color: #000000;
    margin: 0;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    background-color: transparent;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    background-color: transparent;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}
h3{
    font-size: 10px;
    color: #000000;
}
.nav-links a:hover {
    color:  #f88f2dc4;
}
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #f0711cc4;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
    z-index: 10000;
    font-size: 18px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}
.search-cart {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    position: static;
}

.search-box {
    border-radius: 50px;
    display: flex;
    background-color: #000000;
    align-items: center;
    gap: 10px;
    border: 1px solid #333;
    padding: 3px 8px;
}

#search-box {
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
    width: 180px;
}

#search-box::placeholder {
    color: #999;
}

#search-box:focus {
    outline: none;
}

.search-box:focus-within {
    border-color: #f88f2dc4;
}

.search-submit {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%);
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.search-submit:hover {
    filter: brightness(1.06);
}

.search-clear {
    border: none;
    background: transparent;
    color: #d6d6d6;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.search-clear:hover {
    color: #ffffff;
}

.search-live-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    width: auto;
    background: #ffffff;
    color: #222;
    border-radius: 14px;
    border: 1px solid #ececec;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    display: grid;
    grid-template-columns: 2fr 1fr;
    z-index: 1300;
    overflow: hidden;
}

.search-live-panel__products {
    padding: 18px 18px 16px;
    border-left: 1px solid #f0f0f0;
}

.search-live-panel__side {
    padding: 18px 14px;
    background: #fafafa;
}

.search-live-panel h4 {
    margin: 0 0 12px;
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 700;
}

.search-live-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.search-live-product {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #efefef;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-live-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.search-live-product img {
    width: 100%;
    height: 86px;
    object-fit: contain;
    background: #f5f5f5;
}

.search-live-product__body {
    padding: 8px;
}

.search-live-product__name {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
    line-height: 1.35;
}

.search-live-product__meta {
    font-size: 12px;
    color: #666;
    margin: 0 0 5px;
    line-height: 1.35;
}

.search-live-product__price {
    font-size: 13px;
    color: #000;
    margin: 0;
    font-weight: 700;
}

.search-live-view-all {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%);
    color: #fff !important;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.search-live-view-all:hover {
    filter: brightness(1.05);
}

.search-live-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.search-live-list li {
    margin-bottom: 8px;
}

.search-live-list li a {
    color: #383838;
    text-decoration: none;
    font-size: 14px;
}

.search-live-list li a:hover {
    color: #ff7c02;
}

.search-live-empty {
    color: #777;
    font-size: 14px;
    margin: 8px 0;
}

.search input {
    padding: 5px 10px;
    border-radius: 20px;
    border: none;
}

.cart-icon {
    position: relative;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    background: transparent;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.cart-icon:hover {
    transform: scale(1.1);
}


.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: red;
    color: white;
    border-radius: 100%;
    padding: 2px 7px;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
    direction: ltr;
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    height: 620px;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 30px 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    text-align: right;
    z-index: 2;
}
.slider-caption h2 {
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slider-caption p {
    margin: 0;
    font-size: 18px;
    opacity: 0.95;
    color: #f0f0f0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 124, 2, 0.9);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.slider-prev { right: 20px; }
.slider-next { left: 20px; }

.slider-arrow:hover {
    background: #ff7c02;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 124, 2, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dots button:hover,
.slider-dots button[aria-current="true"] {
    background: #ff7c02;
    border-color: #ff7c02;
}

.company-name h1 {
    font-size: 15px;
    margin: 0;
    color: #000000;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.gallery-item img {
    width: 460px;
    height: 400px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.5);
}

.brands-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7c02 0%, #ff9800 50%, #ff7c02 100%);
}

.brands-title {
    font-size: 42px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 50px;
    padding: 0;
    text-align: center;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.brands-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7c02, #ff9800);
    border-radius: 2px;
}

.brands-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.brands-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0;
}

.brands-section .col-3 {
    flex: 0 0 auto;
    width: auto;
    padding: 0;
    margin: 0;
}

.brand-card {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    width: 220px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7c02, #ff9800);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 124, 2, 0.2);
    border-color: #ff7c02;
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card img {
    max-width: 120px;
    height: 80px;
    display: block;
    margin: 0 auto 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.brand-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    padding: 0 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-name {
    color: #ff7c02;
}
.products-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7c02 0%, #ff9800 50%, #ff7c02 100%);
}

.products-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 50px;
    padding: 0;
    text-align: center;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.products-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7c02, #ff9800);
    border-radius: 2px;
}

.products-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f0f0f0;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    cursor: pointer;
}

.product-card a {
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7c02, #ff9800);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 124, 2, 0.2);
    border-color: #ff7c02;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover .product-info h3 {
    color: #ff7c02;
    transition: color 0.3s ease;
}

.product-card img {
    padding: 20px;
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.4s ease;
    background: #fafafa;
}

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

.product-info {
    padding: 20px;
    width: 100%;
    text-align: right;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.products-section p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #ff7c02;
    margin-bottom: 15px;
    text-align: right;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 124, 2, 0.3);
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ff7c02 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 124, 2, 0.4);
}

.product-card .btn {
    margin-top: auto;
    border-radius: 25px;
}

.contact-section {
    font-size: 20px;
    color: #ff7c01c4;
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: grid;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(img_6575);
    background-size: cover;
}

.contact-section{
    color: #ffffff;
    text-align: center;
}

.contact-section h3 {
    font-size: 20px;
    color: #ffffff;
}
a h5{
    color: #ffffff;
    text-decoration: underline;
    font-size: 17px;
}

.contact-info-page {
    width: 100%;
    background: #f5f6f8;
    color: #1f1f1f;
}

.contact-info-page__hero {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 16px;
}

.contact-info-page__hero-content h1 {
    margin: 0 0 12px 0;
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

.contact-info-page__hero-content p {
    color: #f3f3f3;
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

.contact-info-page__container {
    max-width: 1240px;
    margin: -65px auto 0;
    padding: 0 18px 50px;
    position: relative;
    z-index: 2;
}

.contact-info-page__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 24px;
    align-items: start;
}

.contact-info-page__details {
    display: grid;
    gap: 16px;
}

.contact-info-page__card,
.contact-info-page__form-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.contact-info-page__card {
    padding: 22px 20px;
}

.contact-info-page__card h3 {
    margin: 0 0 14px 0;
    color: #ff7c02;
    font-size: 22px;
}

.contact-info-page__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.contact-info-page__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.contact-info-page__list li i {
    color: #ff7c02;
    width: 18px;
    text-align: center;
}

.contact-info-page__list li a,
.contact-info-page__list li span {
    color: #333;
    text-decoration: none;
}

.contact-info-page__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-info-page__social a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #ff7c02, #ff9800);
    transition: transform 0.2s ease;
}

.contact-info-page__social a:hover {
    transform: translateY(-2px);
}

.contact-info-page__form-card {
    padding: 28px 24px;
}

.contact-info-page__form-card h2 {
    margin: 0 0 8px 0;
    color: #1f1f1f;
    font-size: 30px;
}

.contact-info-page__form-card > p {
    margin: 0 0 18px 0;
    color: #666;
    font-size: 15px;
}

.contact-info-page__form {
    display: grid;
    gap: 14px;
}

.contact-info-page__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-info-page__field {
    display: grid;
    gap: 7px;
}

.contact-info-page__field label {
    font-size: 14px;
    color: #2f2f2f;
    font-weight: 600;
}

.contact-info-page__field input,
.contact-info-page__field textarea {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 11px 12px;
    background: #fff;
    font-size: 14px;
}

.contact-info-page__field input:focus,
.contact-info-page__field textarea:focus {
    border-color: #ff7c02;
    box-shadow: 0 0 0 3px rgba(255, 124, 2, 0.14);
    outline: none;
}

.contact-info-page__submit {
    margin-top: 6px;
    border: none;
    border-radius: 24px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff7c02, #ff9800);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
}

.contact-info-page__submit:hover {
    filter: brightness(1.04);
}

.about-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7c02 0%, #ff9800 50%, #ff7c02 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 48px;
    color: #ff7c02;
    text-align: right;
    margin-bottom: 40px;
    padding: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff7c02, #ff9800);
    border-radius: 2px;
}

.about-content h5 {
    font-size: 36px;
    color: #333333;
    text-align: right;
    margin: 50px 0 30px 0;
    padding: 0;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h5::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff7c02, #ff9800);
    border-radius: 2px;
}

.about-content p {
    font-size: 18px;
    text-align: right;
    line-height: 1.9;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 35px;
    margin-bottom: 25px;
    color: #444444;
    border-right: 4px solid #ff7c02;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-content p:hover {
    background: #ffffff;
    transform: translateX(-8px);
    box-shadow: 0 4px 20px rgba(255, 124, 2, 0.15);
    border-right-color: #ff9800;
}

.about-content p strong {
    color: #ff7c02;
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

footer:not(.modern-footer) {
    width: 100%;
    display: grid;
    background: #000000e9;
    padding: 20px 0;
    margin-top: 30px;
}

font{
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #ffffff;

}

/* استجابة */
@media (max-width: 992px) {
    .navbar-top-note {
        font-size: 11px;
        padding: 6px 0;
    }

    .navbar-top-note__track {
        animation-duration: 28s;
    }

    .navbar-top-note__item,
    .navbar-top-note__clone {
        padding: 0 20px;
    }

    header.navbar,
    .navbar {
        padding: 12px 16px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .navbar__brand {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
    }

    .navbar__toggle {
        display: inline-flex;
        order: 2;
    }

    .search-cart {
        order: 3;
        width: auto;
        justify-content: flex-end;
    }

    .navbar .nav-links {
        order: 4;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 6px;
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 8px;
    }

    .navbar.is-open .nav-links {
        display: flex;
    }

    .nav-links a {
        font-size: 14px;
        padding: 10px 12px;
        text-align: center;
    }

    .logo img {
        width: 52px;
        height: 52px;
    }

    .navbar h2 {
        font-size: 12px;
        text-align: right;
        white-space: normal;
    }

    .search-cart {
        flex-wrap: nowrap;
    }

    .search-live-panel {
        left: 10px;
        right: 10px;
        grid-template-columns: 1fr;
    }

    .search-live-panel__products {
        border-left: none;
        border-bottom: 1px solid #f0f0f0;
    }

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

    #search-box {
        width: 100%;
        max-width: 220px;
    }

    .contact-info-page__hero {
        min-height: 220px;
    }

    .contact-info-page__hero-content h1 {
        font-size: 32px;
    }

    .contact-info-page__hero-content p {
        font-size: 14px;
    }

    .contact-info-page__container {
        margin-top: -45px;
        padding: 0 14px 36px;
    }

    .contact-info-page__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-info-page__form-card {
        padding: 20px 16px;
    }

    .contact-info-page__row {
        grid-template-columns: 1fr;
    }

    .contact-info-page__submit {
        width: 100%;
    }

    .about-section {
        padding: 50px 15px;
    }

    .about-content {
        padding: 0;
    }

    .about-content h2 {
        font-size: 32px;
        margin-bottom: 30px;
        padding-bottom: 12px;
    }

    .about-content h2::after {
        width: 60px;
        height: 3px;
    }

    .about-content h5 {
        font-size: 26px;
        margin: 40px 0 25px 0;
        padding-bottom: 12px;
    }

    .about-content h5::after {
        width: 60px;
        height: 3px;
    }

    .about-content p {
        font-size: 16px;
        padding: 25px 20px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .about-content p strong {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
    }

    .brands-section {
        padding: 50px 15px;
    }

    .brands-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .brands-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }

    .brands-section .row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin: 0;
        padding: 0 8px;
    }

    .brands-section .row > [class*="col-"] {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .brand-card {
        width: 100%;
        height: 160px;
    }

    .brand-card img {
        max-width: 100px;
        height: 70px;
        margin-bottom: 12px;
    }

    .brand-name {
        font-size: 14px;
    }

    .products-section {
        padding: 50px 15px;
    }

    .products-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .products-section h2::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: 14px;
        padding: 0 8px;
    }

    .products-grid > a {
        width: 100%;
        height: 100%;
    }

    .product-card {
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 300px;
    }

    .product-card img {
        height: 145px;
        padding: 10px;
    }

    .product-info {
        padding: 12px;
    }

    .products-section h3 {
        font-size: 14px;
        line-height: 1.35;
        min-height: 38px;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
    }

    .products-section p {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 8px;
        min-height: 34px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
    }

    .price {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero-slider .slider-slide {
        min-height: 280px;
    }

    .hero-slider .slider-slide img {
        height: 280px;
    }

    .slider-caption {
        padding: 20px 25px;
    }

    .slider-caption h2 {
        font-size: 22px;
    }

    .slider-caption p {
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .slider-prev { right: 10px; }
    .slider-next { left: 10px; }

    .brands-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .navbar-top-note {
        font-size: 10px;
        padding: 5px 0;
    }

    .navbar-top-note__track {
        animation-duration: 28s;
    }

    .navbar-top-note__item,
    .navbar-top-note__clone {
        padding: 0 14px;
    }

    .products-grid {
        gap: 10px;
        padding: 0 4px;
    }

    .product-card {
        min-height: 255px;
        border-radius: 12px;
    }

    .product-card img {
        height: 108px;
        padding: 8px;
    }

    .product-info {
        padding: 9px;
    }

    .products-section h3 {
        font-size: 12px;
        min-height: 32px;
        margin-bottom: 4px;
    }

    .products-section p {
        font-size: 11px;
        min-height: 28px;
        margin-bottom: 6px;
    }

    .price {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .btn {
        font-size: 11px;
        padding: 7px 8px;
        border-radius: 14px;
    }

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

/* Product listing pages (Device/Accessories/Camera) mobile compact cards */
@media (max-width: 768px) {
    .product-listing-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0 6px;
    }

    .product-listing-page .product-card {
        min-height: 250px;
    }

    .product-listing-page .product-card img {
        height: 105px;
        padding: 8px;
    }

    .product-listing-page .product-info {
        padding: 9px;
    }

    .product-listing-page .product-info h3 {
        font-size: 12px;
        line-height: 1.35;
        margin-bottom: 4px;
        min-height: 32px;
    }

    .product-listing-page .product-info p {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 6px;
        min-height: 28px;
    }

    .product-listing-page .price {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .product-listing-page .btn {
        font-size: 11px;
        padding: 7px 8px;
        border-radius: 14px;
    }
}

/* Product Details Page */
.product-details-section {
    width: 100%;
    padding: 40px 20px;
    background: #ffffff;
    min-height: calc(100vh - 200px);
}

.product-details-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #ff7c02;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ff9800;
    text-decoration: underline;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-image-container {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    background: #fafafa;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #fafafa;
}

.product-thumbnails .thumbnail:hover {
    border-color: #ff7c02;
    transform: scale(1.05);
}

.product-thumbnails .thumbnail.active {
    border-color: #ff7c02;
    box-shadow: 0 2px 8px rgba(255, 124, 2, 0.3);
}

.product-info-container {
    padding: 0 20px;
}

.product-title {
    font-size: 36px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-brand {
    font-size: 18px;
    color: #666666;
    margin-bottom: 25px;
    font-weight: 600;
}

.product-price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-right: 4px solid #ff7c02;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #ff7c02;
}

.price-label {
    font-size: 14px;
    color: #666666;
}

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

.product-description h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.product-description p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

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

.product-specifications h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-right: 3px solid #ff7c02;
}

.spec-label {
    font-weight: 600;
    color: #333333;
}

.spec-value {
    color: #666666;
}

.product-actions {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ff7c02;
    background: #ffffff;
    color: #ff7c02;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #ff7c02;
    color: #ffffff;
}

#quantity {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

#quantity:focus {
    outline: none;
    border-color: #ff7c02;
}

.btn-add-to-cart {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 124, 2, 0.3);
}

.btn-add-to-cart:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ff7c02 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 124, 2, 0.4);
}

.cart-icon-btn {
    font-size: 20px;
}

.btn-contact {
    width: 100%;
    padding: 14px 24px;
    background: #ffffff;
    color: #ff7c02;
    border: 2px solid #ff7c02;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #ff7c02;
    color: #ffffff;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333333;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #ff7c02;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Responsive Product Details */
@media (max-width: 768px) {
    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-container {
        position: static;
    }

    .product-main-image img {
        height: 350px;
    }

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

    .product-price {
        font-size: 26px;
    }

    .product-info-container {
        padding: 0;
    }
}

/* Cart Page Styles */
.cart-section {
    width: 100%;
    padding: 40px 20px;
    background: #ffffff;
    min-height: calc(100vh - 200px);
}

.cart-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cart-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #333333;
    margin: 0;
}

.continue-shopping {
    color: #ff7c02;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: #ff9800;
    text-decoration: underline;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.cart-items-container {
    background: #ffffff;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.cart-item-card:hover {
    box-shadow: 0 4px 16px rgba(255, 124, 2, 0.15);
    border-color: #ff7c02;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.cart-item-price {
    font-size: 16px;
    color: #666666;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
}

.cart-item-quantity .quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ff7c02;
    background: #ffffff;
    color: #ff7c02;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cart-item-quantity .quantity-btn:hover {
    background: #ff7c02;
    color: #ffffff;
}

.quantity-value {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    font-size: 20px;
    font-weight: 700;
    color: #ff7c02;
    text-align: left;
}

.remove-item-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #ff4444;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.remove-item-btn:hover {
    background: #cc0000;
    transform: scale(1.1);
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-cart-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-cart h2 {
    font-size: 28px;
    color: #333333;
    margin-bottom: 10px;
}

.empty-cart p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}

.btn-shop-now {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 124, 2, 0.3);
}

.btn-shop-now:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ff7c02 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 124, 2, 0.4);
}

.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.summary-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    color: #666666;
}

.summary-row span:last-child {
    font-weight: 600;
    color: #333333;
}

.delivery-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.delivery-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option:hover {
    border-color: #ff7c02;
    background: #fff8f0;
}

.delivery-option input[type="radio"] {
    margin-left: 12px;
    width: 20px;
    height: 20px;
    accent-color: #ff7c02;
    cursor: pointer;
}

.delivery-option input[type="radio"]:checked + .delivery-info {
    color: #ff7c02;
}

.delivery-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    font-size: 16px;
}

.delivery-name {
    font-weight: 600;
    color: #333333;
}

.delivery-price {
    color: #666666;
    font-weight: 500;
}

.delivery-option input[type="radio"]:checked ~ .delivery-info .delivery-name,
.delivery-option input[type="radio"]:checked ~ .delivery-info .delivery-price {
    color: #ff7c02;
}

.delivery-cost-row {
    margin-top: 15px;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

.total-row {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0;
}

.total-price {
    font-size: 24px;
    color: #ff7c02 !important;
}

.checkout-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 124, 2, 0.3);
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ff7c02 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 124, 2, 0.4);
}

.checkout-icon {
    font-size: 20px;
}

.payment-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.payment-info p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Responsive Cart */
@media (max-width: 968px) {
    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item-card {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .cart-item-quantity,
    .cart-item-total,
    .remove-item-btn {
        grid-column: 2;
        justify-self: start;
        margin-top: 10px;
    }

    .cart-item-quantity {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cart-header h1 {
        font-size: 28px;
    }

    .cart-item-card {
        padding: 15px;
    }

    .summary-card {
        padding: 20px;
    }
}

/* Camera page - specs toggle & product links */
.camera-page .product-card .product-info a[href*="specifications"] {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: transparent;
    color: #ff7c02;
    border: 2px solid #ff7c02;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.camera-page .product-card .product-info a[href*="specifications"]:hover {
    background: #ff7c02;
    color: #fff;
}

.camera-page .product-card .btn-request-price-camera {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 8px rgba(255, 124, 2, 0.3);
}

.camera-page .product-card .btn-request-price-camera:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ff7c02 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 124, 2, 0.4);
}

.camera-page .product-card .specs-toggle-btn {
    display: inline-block;
    margin-top: 8px;
    margin-left: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.camera-page .product-card .specs-toggle-btn:hover {
    background: #ff7c02;
    color: #fff;
    border-color: #ff7c02;
}

.camera-page .product-card .specs {
    max-height: 3.4em;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 13px;
    color: #555;
    margin-top: 8px;
    padding: 8px 0 0 0;
    text-align: right;
    line-height: 1.7;
    border-radius: 8px;
    background: transparent;
}

.camera-page .product-card .specs.open {
    max-height: 400px;
    padding: 14px;
    margin-top: 12px;
    border: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.camera-page .product-card .specs p {
    margin: 0;
    font-size: 13px;
    color: #555;
    white-space: pre-line;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.camera-page .product-card .specs.open p {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
}

/* Camera details - request price badge */
.request-price-badge .price-label {
    font-size: 13px;
    color: #666;
}

.btn-request-price {
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%) !important;
}

/* Cart - request price items */
.cart-item-request-price .cart-item-total .item-total-price {
    color: #ff7c02;
    font-weight: 700;
}

.cart-request-price-note {
    background: #fff8f0;
    border: 1px solid #ff7c02;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
    text-align: right;
}

/* Maintenance page */
.maintenance-section {
    width: 100%;
    padding: 40px 20px;
    background: #ffffff;
    min-height: calc(100vh - 200px);
}

.maintenance-hero {
    text-align: center;
    padding: 50px 20px 40px;
    margin-bottom: 20px;
}

.maintenance-hero::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff7c02 0%, #ff9800 50%, #ff7c02 100%);
    margin-bottom: 30px;
}

.maintenance-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin: 0 0 15px 0;
}

.maintenance-hero p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.maintenance-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-select-section {
    margin-bottom: 50px;
}

.services-select-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-align: right;
}

.services-select-section .section-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    margin: 0;
    cursor: pointer;
    display: block;
}

.service-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-card-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: right;
}

.service-card-inner .service-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.service-card-inner .service-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.service-card:hover .service-card-inner {
    border-color: #ff7c02;
    background: #fff8f0;
}

.service-card input:checked + .service-card-inner {
    border-color: #ff7c02;
    background: linear-gradient(135deg, #fff8f0 0%, #fff0e0 100%);
    box-shadow: 0 4px 15px rgba(255, 124, 2, 0.2);
}

.service-card input:checked + .service-card-inner::after {
    content: '✓';
    color: #ff7c02;
    font-weight: 700;
    font-size: 18px;
    margin-right: auto;
    padding-right: 8px;
}

.selected-services-summary {
    margin-top: 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-right: 4px solid #ff7c02;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    text-align: right;
}

.maintenance-form-section {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.maintenance-form-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: right;
}

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

.maintenance-form .form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-align: right;
}

.maintenance-form .form-group input,
.maintenance-form .form-group select,
.maintenance-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.maintenance-form .form-group input:focus,
.maintenance-form .form-group select:focus,
.maintenance-form .form-group textarea:focus {
    outline: none;
    border-color: #ff7c02;
}

.maintenance-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-maintenance {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff7c02 0%, #ff9800 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 124, 2, 0.3);
}

.btn-submit-maintenance:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ff7c02 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 124, 2, 0.4);
}

@media (max-width: 768px) {
    .maintenance-hero h1 {
        font-size: 28px;
    }
    .maintenance-hero p {
        font-size: 16px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .maintenance-form-section {
        padding: 25px 20px;
    }
}

/* Modern footer */
.modern-footer {
    width: 100%;
    background: linear-gradient(135deg, #121212 0%, #1d1d1d 60%, #252525 100%);
    color: #f5f5f5;
    border-top: 1px solid rgba(255, 124, 2, 0.35);
    margin-top: 40px;
    display: block;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.modern-footer__container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 50px 20px 18px;
    width: 100%;
    box-sizing: border-box;
}

.modern-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: flex-start;
}

.modern-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.modern-footer__logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 124, 2, 0.6);
}

.modern-footer__desc {
    margin-top: 16px;
    color: #d9d9d9;
    font-size: 15px;
    line-height: 1.9;
}

.modern-footer__links h4,
.modern-footer__contact h4,
.modern-footer__qr h4 {
    color: #ff7c02;
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 700;
}

.modern-footer__links a {
    display: block;
    margin-bottom: 10px;
    color: #efefef;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.modern-footer__links a:hover {
    color: #ff9800;
    transform: translateX(4px);
}

.modern-footer__contact p {
    color: #e4e4e4;
    margin-bottom: 10px;
    font-size: 14px;
}

.modern-footer__contact p i {
    color: #ff9800;
    margin-left: 8px;
}

.modern-footer__contact a {
    color: #f2f2f2;
    text-decoration: none;
}

.modern-footer__contact a:hover {
    color: #ff9800;
}

.modern-footer__social {
    margin-top: 14px;
    display: flex;
    gap: 10px;
}

.modern-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 124, 2, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 124, 2, 0.35);
    transition: all 0.25s ease;
}

.modern-footer__social a:hover {
    background: #ff7c02;
    transform: translateY(-2px);
}

.modern-footer__qr {
    justify-self: center;
    text-align: center;
}

.modern-footer__qr-link {
    display: inline-flex;
    padding: 2px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(255, 124, 2, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modern-footer__qr-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.modern-footer__qr-img {
    width: 128px;
    height: 128px;
    border-radius: 10px;
    display: block;
}

.modern-footer__qr p {
    margin-top: 10px;
    color: #d5d5d5;
    font-size: 13px;
    line-height: 1.7;
}

.modern-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 28px;
    padding-top: 14px;
    text-align: center;
    color: #cfcfcf;
    font-size: 13px;
}

@media (max-width: 992px) {
    .modern-footer__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .modern-footer__container {
        padding: 36px 16px 14px;
    }

    .modern-footer__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modern-footer__logo-link {
        font-size: 20px;
    }

    .modern-footer__qr {
        justify-self: center;
    }
}
