/* GCO Phone Specification Styles */
.gco-phone-spec-container {
    max-width: 1200px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Phone Banner Summary */
.gco-phone-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid #2a2a2a !important;
    overflow: hidden !important;
    position: relative !important;
}

.gco-phone-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ffc107, #ff9800);
    z-index: 1;
}

.gco-banner-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

.gco-banner-badge {
    position: absolute !important;
    top: 28px !important;
    right: -27px !important;
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%) !important;
    color: #000 !important;
    padding: 6px 35px !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.3px !important;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.5) !important;
    z-index: 5 !important;
    transform: rotate(45deg) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    border-radius: 3px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.gco-banner-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

/* Row 1: Image + Title & Brand (Horizontal) */
.gco-banner-row-1 {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    margin-bottom: 25px !important;
}

.gco-banner-image {
    width: 160px !important;
    height: 160px !important;
    min-height: 160px !important;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    flex-shrink: 0 !important;
    border: 2px solid #2a2a2a !important;
}

.gco-banner-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 16px !important;
    display: block !important;
    padding: 12px !important;
}

.gco-banner-info {
    flex: 1 !important;
    color: #fff !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: transparent !important;
}

.gco-banner-title {
    font-size: 36px !important;
    font-weight: 900 !important;
    margin: 0 0 12px 0 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5) !important;
    letter-spacing: -0.5px !important;
}

.gco-banner-brand {
    display: inline-block !important;
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%) !important;
    color: #000 !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4) !important;
    width: fit-content !important;
}

/* Row 2: Specs Cards */
.gco-banner-row-2 {
    width: 100% !important;
}

.gco-banner-specs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    margin-top: 0 !important;
}

.gco-banner-spec-item {
    background: rgba(255, 152, 0, 0.05) !important;
    padding: 18px 16px !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 152, 0, 0.15) !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.gco-banner-spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff9800, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gco-banner-spec-item:hover {
    background: rgba(255, 152, 0, 0.12) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(255, 152, 0, 0.25) !important;
    border-color: rgba(255, 152, 0, 0.3) !important;
}

.gco-banner-spec-item:hover::before {
    opacity: 1;
}

.gco-spec-icon {
    font-size: 28px !important;
    flex-shrink: 0 !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

.gco-spec-label-title {
    font-size: 10px !important;
    color: #ff9800 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    margin-top: 2px !important;
}

.gco-spec-text {
    font-size: 14px !important;
    color: #e0e0e0 !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
    line-height: 1.4 !important;
}

/* Accordion Styles */
.gco-accordion-wrapper {
    background: #0a0a0a !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid #1a1a1a !important;
    margin-top: 20px !important;
}

.gco-accordion-item {
    border-bottom: 1px solid #1a1a1a !important;
}

.gco-accordion-item:last-child {
    border-bottom: none !important;
}

.gco-accordion-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 20px !important;
    cursor: pointer !important;
    user-select: none !important;
    background: #121212 !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
}

.gco-accordion-header:hover {
    background: #1a1a1a !important;
    border-left-color: #ff9800 !important;
}

.gco-accordion-header.active {
    background: linear-gradient(90deg, #1a1a1a 0%, #121212 100%) !important;
    border-left-color: #ffc107 !important;
}

.gco-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.gco-icon-badge {
    width: 36px !important;
    height: 36px !important;
    background: #1a1a1a !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    border: 1px solid #2a2a2a !important;
    transition: all 0.2s ease !important;
}

.gco-accordion-header:hover .gco-icon-badge {
    background: #ff9800 !important;
    border-color: #ffc107 !important;
    transform: scale(1.1) !important;
}

.gco-title-text {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0.5px !important;
}

.gco-chevron {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #666 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.gco-chevron.open {
    transform: rotate(180deg) !important;
}

.gco-accordion-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    background: #0a0a0a !important;
}

.gco-accordion-content.open {
    max-height: 3000px !important;
}

.gco-content-inner {
    padding: 16px 20px !important;
}

.gco-spec-row {
    display: grid !important;
    grid-template-columns: 180px 1fr !important;
    gap: 16px !important;
    padding: 10px 12px !important;
    background: #121212 !important;
    border-radius: 6px !important;
    margin-bottom: 6px !important;
    border-left: 2px solid #1a1a1a !important;
    transition: all 0.2s ease !important;
    align-items: start !important;
}

.gco-spec-row:hover {
    background: #1a1a1a !important;
    border-left-color: #ff9800 !important;
    transform: translateX(4px) !important;
}

.gco-spec-row-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #ff9800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.gco-spec-row-value {
    font-size: 14px !important;
    color: #e0e0e0 !important;
    line-height: 1.5 !important;
}

/* Auto Generated Description */
.gco-spec-description {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.08) 0%, rgba(255, 193, 7, 0.05) 100%) !important;
    border-left: 4px solid #ff9800 !important;
    padding: 20px 25px !important;
    border-radius: 12px !important;
    margin: 25px 0 !important;
    border: 1px solid rgba(255, 152, 0, 0.15) !important;
    box-sizing: border-box !important;
}

.gco-desc-text {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #2a2a2a !important;
    margin: 0 !important;
    font-weight: 500 !important;
    padding: 0 !important;
}

.gco-desc-text strong {
    color: #ff6b00 !important;
    font-weight: 700 !important;
    background: none !important;
}

@media (max-width: 768px) {
    .gco-spec-description {
        padding: 16px 18px !important;
        margin: 20px 0 !important;
    }
    
    .gco-desc-text {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
}

/* Full Specifications Heading */
.gco-spec-heading {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 40px 0 25px 0 !important;
}

.gco-spec-heading-line {
    flex: 1 !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent 0%, #ff9800 50%, transparent 100%) !important;
}

.gco-spec-heading-title {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    white-space: nowrap !important;
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
}

.gco-spec-heading-icon {
    font-size: 28px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
    -webkit-text-fill-color: initial !important;
}

@media (max-width: 768px) {
    .gco-spec-heading {
        margin: 30px 0 20px 0 !important;
    }
    
    .gco-spec-heading-title {
        font-size: 18px !important;
        letter-spacing: 1px !important;
    }
    
    .gco-spec-heading-icon {
        font-size: 22px !important;
    }
}

/* Affiliate Section */
.gco-affiliate-row {
    display: block !important;
    padding: 20px !important;
}

.gco-affiliate-row .gco-spec-row-label {
    margin-bottom: 10px !important;
}

.gco-affiliate-row .gco-spec-row-value {
    margin-top: 10px !important;
}

.gco-affiliate-note {
    font-size: 13px !important;
    color: #999 !important;
    margin-bottom: 15px !important;
    font-style: italic !important;
}

.gco-affiliate-buttons {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.gco-affiliate-button {
    display: inline-block !important;
    padding: 12px 30px !important;
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%) !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    flex: 1 !important;
    min-width: 180px !important;
    border: none !important;
    text-align: center !important;
}

.gco-affiliate-button:hover {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6) !important;
    color: #000 !important;
    text-decoration: none !important;
}

.gco-affiliate-button-secondary {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%) !important;
    color: #ffc107 !important;
    border: 2px solid #ff9800 !important;
}

.gco-affiliate-button-secondary:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%) !important;
    color: #fff !important;
    border-color: #ffc107 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .gco-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

.gco-banner-badge {
    top: 20px !important;
    right: -24px !important;
    padding: 5px 30px !important;
    font-size: 8px !important;
}
    
    .gco-banner-image {
        width: 100% !important;
        max-width: 300px !important;
        min-height: 300px !important;
    }

    .gco-banner-image img {
        height: 300px !important;
    }
    
    .gco-banner-title {
        font-size: 24px;
    }
    
    .gco-banner-specs {
        grid-template-columns: 1fr;
    }
    
    .gco-banner-spec-item:hover {
        transform: translateX(0);
    }
    
    .gco-spec-row {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
    
    .gco-accordion-header {
        padding: 12px 16px !important;
    }
    
    .gco-title-text {
        font-size: 14px !important;
    }
    
    .gco-affiliate-buttons {
        flex-direction: column !important;
    }
    
    .gco-affiliate-button {
        min-width: 100% !important;
    }
}

/* Empty State */
.gco-spec-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.gco-spec-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Responsive Banner */
@media (max-width: 968px) {
    .gco-banner-specs {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .gco-phone-banner {
        padding: 20px !important;
    }
    
    .gco-banner-row-1 {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        margin-bottom: 20px !important;
    }
    
    .gco-banner-image {
        width: 200px !important;
        height: 200px !important;
        min-height: 200px !important;
        margin-bottom: 15px !important;
    }
    
    .gco-banner-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        padding: 15px !important;
        display: block !important;
    }
    
    .gco-banner-info {
        align-items: center !important;
        text-align: center !important;
    }
    
    .gco-banner-title {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    
    .gco-banner-brand {
        font-size: 11px !important;
        padding: 6px 16px !important;
    }
    
.gco-banner-specs {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
}
    
    .gco-banner-spec-item {
        padding: 16px 14px !important;
    }
    
    .gco-banner-spec-item:hover {
        transform: translateY(0) !important;
    }
    
    .gco-spec-icon {
        font-size: 24px !important;
    }
    
    .gco-spec-text {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .gco-phone-banner {
        padding: 15px !important;
        border-radius: 16px !important;
    }
    
    .gco-banner-title {
        font-size: 20px !important;
    }
    
    .gco-banner-specs {
        gap: 10px !important;
    }
}
