/* Product Details Page */
.product-details-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 120px 0 0;
}

.product-main {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    min-height: calc(100vh - 120px);
}

/* Left Sticky Sidebar */
.product-sidebar {
    flex: 0 0 45%;
    position: sticky;
    top: 120px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 40px 30px;
    background: var(--bg-primary);
    border-right: 1px solid var(--border-color);
}

/* Right Scrollable Content */
.product-info {
    flex: 1;
    background: var(--bg-secondary);
    padding: 40px 30px;
    overflow-y: auto;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--gold-primary);
}

/* Product Description Accordion in Sidebar */
.product-description-accordion {
    margin-bottom: 30px;
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: 8px;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--gold-primary);
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.accordion-header.active h3 {
    color: var(--gold-primary);
}

.accordion-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.accordion-header.active .accordion-icon {
    color: var(--gold-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.accordion-content.show {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 20px;
}

.accordion-content .description-text {
    padding-top: 0;
}

.accordion-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.accordion-content ul {
    list-style: none;
    margin-top: 15px;
}

.accordion-content li {
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.accordion-content li:before {
    content: "✓";
    color: var(--gold-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-info h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 30px;
}

.product-note {
    background: var(--gold-primary);
    color: var(--color-dark);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.note-content ul {
    margin: 10px 0 0 20px;
}

.note-content li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.product-description {
    margin-bottom: 30px;
}

.product-description h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.description-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.description-text p {
    margin-bottom: 15px;
}

.product-features {
    margin: 20px 0;
}

.product-features ul {
    margin-left: 20px;
}

.product-features li {
    margin-bottom: 8px;
}

.view-details {
    margin-top: 15px;
}

.details-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gold-primary);
}

.material-selection,
.dimensions-section,
.size-calculator,
.base-dimensions,
.shape-selection,
.lettering-section,
.symbols-section,
.services-section,
.installation-section {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
}

.material-selection h3,
/* Dimensions Section Header */
.dimensions-section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.dimensions-section h3 i {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.size-calculator h3,
.base-dimensions h3,
.shape-selection h3,
.lettering-section h3,
.symbols-section h3,
.services-section h3,
.installation-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 300px;
}

.material-option {
    cursor: pointer;
    border-radius: 4px;
    padding: 4px;
    transition: all 0.3s ease;
}

.material-option.active {
    background: var(--bg-secondary);
}

.material-swatch {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.material-option.active .material-swatch {
    border-color: var(--gold-primary);
}

/* Recommended Sizes */
.recommended-sizes {
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.recommended-sizes h4 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.size-preset {
    background: var(--gold-primary);
    color: var(--color-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-preset:hover {
    background: #f4f167;
    transform: translateY(-1px);
}

/* Dimension Categories */
.dimension-category {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.dimension-category label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.dimension-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dimension-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 45px;
    text-align: center;
}

.dimension-btn:hover {
    border-color: var(--gold-primary);
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.dimension-btn.active {
    background: var(--gold-primary);
    color: var(--color-dark);
    border-color: var(--gold-primary);
    font-weight: 600;
}

.calculator-content {
    background: var(--bg-primary);
    padding: 15px;
    border-radius: 6px;
}

.calculator-content p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.calculator-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculator-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.base-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-row label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-row input {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 6px 10px;
    color: var(--text-primary);
    width: 80px;
    text-align: center;
}

/* Base Dimension Button */
.base-dimension-button {
    margin-top: 10px;
}

.dimension-preset {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.dimension-preset:hover {
    border-color: var(--border-color);
    background: var(--bg-primary);
}

/* Extras Section */
.extras-section {
    margin-bottom: 30px;
}

.extras-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.extra-option {
    margin-bottom: 15px;
}

.extra-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
    position: relative;
}

.extra-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.extra-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.extra-checkbox input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-dark);
    font-weight: bold;
    font-size: 12px;
}

.label-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.extra-dropdown {
    position: relative;
    margin-left: 30px;
}

.dropdown-select {
    width: 100%;
    padding: 10px 35px 10px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.dropdown-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px var(--bg-secondary);
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 12px;
}

/* Services Section - Same styling as Extras */
.services-section {
    margin-bottom: 30px;
}

.services-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-option {
    margin-bottom: 15px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
    position: relative;
}

.service-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.service-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

.service-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.service-checkbox input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-dark);
    font-weight: bold;
    font-size: 12px;
}

.service-checkbox .label-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-dropdown {
    position: relative;
    margin-left: 30px;
}

/* Installation Section */
.installation-section {
    margin-bottom: 30px;
}

.installation-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.installation-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.installation-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.installation-option input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    flex-shrink: 0;
}

.installation-option input[type="radio"]:checked + .radio-circle {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.installation-option input[type="radio"]:checked + .radio-circle:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-dark);
}

.option-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.shape-options {
    display: flex;
    gap: 10px;
}

.shape-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shape-btn.active {
    background: var(--gold-primary);
    color: var(--color-dark);
    border-color: var(--gold-primary);
}

.lettering-input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    color: var(--text-primary);
    resize: vertical;
    min-height: 80px;
    font-family: 'Poppins', sans-serif;
}

.lettering-input::placeholder {
    color: var(--text-muted);
}

.symbol-options {
    display: flex;
    gap: 10px;
}

.symbol-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.service-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold-primary);
}

.service-option span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.installation-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold-primary);
}

.radio-option span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.specs-grid {
    display: grid;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-item label {
    color: var(--text-muted);
    font-weight: 500;
}

.customization-section {
    margin-bottom: 30px;
}

.customization-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.custom-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-group label {
    font-weight: 500;
    color: var(--text-secondary);
}

.option-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    color: var(--text-primary);
    resize: vertical;
    min-height: 80px;
}

.option-group select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    color: var(--text-primary);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--color-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary.full-width {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

.btn-primary:hover {
    background: #f4c430;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Remove old product specs styles */
.product-specs,
.customization-section {
    display: none;
}

.expert-consultation {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-secondary);
    padding: 60px 40px;
    margin-bottom: 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.expert-consultation > .consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.consultation-image {
    border-radius: 8px;
    overflow: hidden;
}

.consultation-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.consultation-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.consultation-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.expert-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.expert-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.expert-benefits i {
    color: var(--gold-primary);
    font-size: 0.6rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-call-now {
    background: var(--gold-primary);
    color: var(--color-dark);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.btn-call-now:hover {
    background: #e6f082;
    transform: translateY(-2px);
}

.btn-callback {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.btn-callback:hover {
    background: #333;
    border-color: #555;
    transform: translateY(-2px);
}

.installment-section {
    
    padding-top: 60px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.installment-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.installment-section p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.installment-form {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.duration-selection {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.duration-selection label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.duration-dropdown {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-size: 1rem;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.duration-dropdown:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px var(--bg-secondary);
}

.payment-breakdown {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.breakdown-row:last-child {
    border-bottom: none;
}

.personal-info-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row.full-width {
    width: 100%;
}

.form-row.dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.personal-info-form input {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-size: 1rem;
    flex: 1;
    transition: all 0.3s ease;
}

.personal-info-form input::placeholder {
    color: var(--text-muted);
}

.personal-info-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px var(--bg-secondary);
}

.consent-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark-small {
    width: 16px;
    height: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark-small {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark-small::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-dark);
    font-size: 11px;
    font-weight: bold;
}

.consent-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    flex: 1;
}

.consent-text a {
    color: var(--gold-primary);
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}

.btn-apply {
    background: var(--gold-primary);
    color: var(--color-dark);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 10px;
}

.btn-apply:hover {
    background: #e6f082;
    transform: translateY(-2px);
}

.care-standards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.care-content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold-primary);
}

.care-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.care-feature {
    display: flex;
    gap: 15px;
}

.care-feature i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-top: 5px;
}

.care-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.care-feature p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.care-image {
    border-radius: 8px;
    overflow: hidden;
}

.care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-products {
    margin-bottom: 60px;
}

.similar-products h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold-primary);
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.similar-item {
    /* Container for product-item, no additional styling needed */
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--bg-secondary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold-primary);
}

.faq-answer {
    background: var(--bg-secondary);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.recently-viewed {
    margin-bottom: 40px;
}

.recently-viewed h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.recent-items {
    display: flex;
    gap: 15px;
}

.recent-item {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recent-item:hover {
    transform: scale(1.05);
}

.recent-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design for Product Details */
@media (max-width: 1024px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expert-consultation {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .care-standards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-details-page {
        padding: 100px 0 30px;
    }
    
    .product-main {
        flex-direction: column;
        min-height: auto;
    }
    
    .product-sidebar {
        position: relative;
        flex: none;
        top: auto;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 20px;
    }
    
    .product-info {
        padding: 30px 20px;
    }
    
    .expert-consultation,
    .installment-section,
    .care-standards {
        padding: 25px;
    }
    
    .similar-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-images {
        flex-wrap: wrap;
    }
    
    .product-actions {
        flex-direction: column;
    }
}